java.lang.Object com.ibm.broker.config.proxy.SubscriptionParameters
public class SubscriptionParameters
extends Object
The class holds the set of parameters that can be set on a SubscriptionQuery object to query a brokers subscriptions. An example of it use is given below:
... SubscriptionQuery sq = bp.createSubscriptionQuery(); sq.setString(SubscriptionParameters.TOPIC, "topicB");
Class | Description |
---|---|
SubscriptionParameters.MQ | This class contains the set of parameters that can be set on a SubscriptionQuery object to query a brokers MQ subscriptions. |
Field | Description |
---|---|
copyright | IBM Copyright |
ENDDATE | The latest subscription registration date. |
sccsid | Version information |
STARTDATE | The earliest subscription registration date. |
TOPIC | The subscription topic. |
USER | The user that registered the subscription. |
Constructor | Description |
---|---|
SubscriptionParameters() |
protected static final java.lang.String copyrightIBM Copyright
public static final java.lang.String ENDDATEThe latest subscription registration date. The parameter value must be of type GregorianCalendar
protected static final java.lang.String sccsidVersion information
public static final java.lang.String STARTDATEThe earliest subscription registration date. The parameter value must be of type GregorianCalendar
public static final java.lang.String TOPICThe subscription topic. The parameter value must be of type String
public static final java.lang.String USERThe user that registered the subscription. The parameter value must be of type String
public SubscriptionParameters()