async getQueuesForAddress()

in artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/artemis-service.ts [429:436]


    async getQueuesForAddress(address: string): Promise<string> {
        var queuesFilter = {
            field: 'address',
            operation: 'EQUALS',
            value: address
        };
        return await jolokiaService.execute(await this.getBrokerObjectName(), LIST_QUEUES_SIG, [JSON.stringify(queuesFilter), 1, 1000]) as string;
    }