Class Hierarchy All Classes All Fields and Methods

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

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");
 
 

Inner Class Index
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 Index
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 Index
Constructor Description
SubscriptionParameters()  

Fields

copyright

protected static final java.lang.String copyright

IBM Copyright

ENDDATE

public static final java.lang.String ENDDATE

The latest subscription registration date. The parameter value must be of type GregorianCalendar

sccsid

protected static final java.lang.String sccsid

Version information

STARTDATE

public static final java.lang.String STARTDATE

The earliest subscription registration date. The parameter value must be of type GregorianCalendar

TOPIC

public static final java.lang.String TOPIC

The subscription topic. The parameter value must be of type String

USER

public static final java.lang.String USER

The user that registered the subscription. The parameter value must be of type String

Constructors

SubscriptionParameters

public SubscriptionParameters() 

Class Hierarchy All Classes All Fields and Methods