Class Hierarchy All Classes All Fields and Methods

Class com.ibm.broker.config.proxy.SubscriptionParameters.MQ

java.lang.Object
        com.ibm.broker.config.proxy.SubscriptionParameters.MQ

public static class SubscriptionParameters.MQ
extends Object

This class contains the set of parameters that can be set on a SubscriptionQuery object to query a brokers MQ subscriptions. These parameters are specific to the MQ transport. An example of it use is given below:

 
 ...
 SubscriptionQuery sq = bp.createSubscriptionQuery();
 byte[] correlId = new byte[24];
 Arrays.fill(correlId, (byte)6);
 sq.setBytes(SubscriptionParameters.MQ.CORRELID, correlId);
 sq.setString(SubscriptionParameters.MQ.QUEUEMANAGER, "QM");
 sq.setString(SubscriptionParameters.MQ.QUEUE, "Q");
 
 

Field Index
Field Description
CORRELID The CorrelId of the subscription.
QUEUE The queue of the subscription.
QUEUEMANAGER The queue manager of the subscription.
SUBSCRIPTIONPOINT The Subscription point of the subscription.
Constructor Index
Constructor Description
SubscriptionParameters.MQ()  

Fields

CORRELID

public static final java.lang.String CORRELID

The CorrelId of the subscription. The parameter value must be of type byte[]

QUEUE

public static final java.lang.String QUEUE

The queue of the subscription. The parameter value must be of type String

QUEUEMANAGER

public static final java.lang.String QUEUEMANAGER

The queue manager of the subscription. The parameter value must be of type String

SUBSCRIPTIONPOINT

public static final java.lang.String SUBSCRIPTIONPOINT

The Subscription point of the subscription. The parameter value must be of type String

Constructors

SubscriptionParameters.MQ

public SubscriptionParameters.MQ() 

Class Hierarchy All Classes All Fields and Methods