Uses of Class
com.ibm.broker.config.proxy.TopicProxy

Uses of TopicProxy in com.ibm.broker.config.proxy
 

Subclasses of TopicProxy in com.ibm.broker.config.proxy
 class TopicRootProxy
          Represents the root of the topic hierarchy.
 

Methods in com.ibm.broker.config.proxy that return TopicProxy
 TopicProxy TopicProxy.createChildTopic(java.lang.String name)
          Creates a topic of the supplied name so that it sits under the current topic.
 TopicProxy TopicProxy.getChildTopic(java.util.Properties props)
          Returns the first TopicProxy object directly (that is, one level) underneath the current one that matches the supplied filter.
 TopicProxy TopicProxy.getChildTopicByName(java.lang.String topicName)
          Returns the TopicProxy object with the supplied name, or null if a topic of that name does not exist or if the supplied argument was null.
 

Methods in com.ibm.broker.config.proxy that return types with arguments of type TopicProxy
 java.util.Enumeration<TopicProxy> TopicProxy.getChildTopics(java.util.Properties props)
          Returns an enumeration of all TopicProxy objects directly (that is, one level) underneath the current one that match the supplied filter.
 

Methods in com.ibm.broker.config.proxy with parameters of type TopicProxy
 void TopicProxy.moveTopic(java.lang.String name, TopicProxy newProxy)
          Atomically removes the topic tree with the supplied name from the current TopicProxy and adds it to the supplied instance.