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

java.lang.Object
  extended by com.ibm.broker.config.proxy.SubscriptionParameters.MQ
Enclosing class:
SubscriptionParameters

public static class SubscriptionParameters.MQ
extends java.lang.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 Summary
static java.lang.String CORRELID
          The CorrelId of the subscription.
static java.lang.String QUEUE
          The queue of the subscription.
static java.lang.String QUEUEMANAGER
          The queue manager of the subscription.
static java.lang.String SUBSCRIPTIONPOINT
          The Subscription point of the subscription.
 
Constructor Summary
SubscriptionParameters.MQ()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CORRELID

public static final java.lang.String CORRELID
The CorrelId of the subscription. The parameter value must be of type byte[]

See Also:
Constant Field Values

SUBSCRIPTIONPOINT

public static final java.lang.String SUBSCRIPTIONPOINT
The Subscription point of the subscription. The parameter value must be of type String

See Also:
Constant Field Values

QUEUEMANAGER

public static final java.lang.String QUEUEMANAGER
The queue manager of the subscription. The parameter value must be of type String

See Also:
Constant Field Values

QUEUE

public static final java.lang.String QUEUE
The queue of the subscription. The parameter value must be of type String

See Also:
Constant Field Values
Constructor Detail

SubscriptionParameters.MQ

public SubscriptionParameters.MQ()