Package com.tibco.tibjms
Class TibjmsTopic
- java.lang.Object
-
- com.tibco.tibjms.TibjmsDestination
-
- com.tibco.tibjms.TibjmsTopic
-
- All Implemented Interfaces:
com.tibco.tibjms.TibjmsXMLConst
,java.io.Serializable
,java.lang.Cloneable
,Destination
,Topic
,javax.naming.Referenceable
public class TibjmsTopic extends com.tibco.tibjms.TibjmsDestination implements Topic, java.io.Serializable, java.lang.Cloneable, javax.naming.Referenceable
Implementation of javax.jms.Topic which can be used for administrative purposes.
Normally EMS applications look up Topic objects via JNDI calls. This class can be used by the administrator application if it is required to store TibjmsTopic objects in the 3rd party JNDI store such as LDAP or similar.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface com.tibco.tibjms.TibjmsXMLConst
TIBJMS_LDAP_ADMINOBJ, TIBJMS_LDAP_CN, TIBJMS_LDAP_OBJCLASS, TIBJMS_LDAP_TOP, TIBJMS_LDAP_XMLDATA, TIBJMS_XML_ADMINOBJ, TIBJMS_XML_AUTHONLY, TIBJMS_XML_AUTHORITIES, TIBJMS_XML_B64DATA, TIBJMS_XML_CERT, TIBJMS_XML_CERTS, TIBJMS_XML_CIDENTITY, TIBJMS_XML_CIPHERS, TIBJMS_XML_CLIENTID, TIBJMS_XML_CONFACT, TIBJMS_XML_CONNATTEMPTS, TIBJMS_XML_CONNATTEMPTTIMEOUT, TIBJMS_XML_CONNDELAY, TIBJMS_XML_DEBUG_TRACE, TIBJMS_XML_DESTTYPE, TIBJMS_XML_DISABLED, TIBJMS_XML_DTDURL, TIBJMS_XML_ENABLED, TIBJMS_XML_ENCODING, TIBJMS_XML_EXPECTHNAME, TIBJMS_XML_FILE, TIBJMS_XML_GENERIC, TIBJMS_XML_GENPARAMS, TIBJMS_XML_ISSUER, TIBJMS_XML_METRIC, TIBJMS_XML_MULTICAST, TIBJMS_XML_MULTICAST_DAEMON, TIBJMS_XML_NAME, TIBJMS_XML_PARAMETER, TIBJMS_XML_PASSWORD, TIBJMS_XML_PKEY, TIBJMS_XML_QUEUE, TIBJMS_XML_RECONNATTEMPTS, TIBJMS_XML_RECONNATTEMPTTIMEOUT, TIBJMS_XML_RECONNDELAY, TIBJMS_XML_SECPARAMS, TIBJMS_XML_SSLPARAMS, TIBJMS_XML_TOPIC, TIBJMS_XML_TRACE, TIBJMS_XML_TRUSTED, TIBJMS_XML_URL, TIBJMS_XML_USERNAME, TIBJMS_XML_VALUE, TIBJMS_XML_VENDOR, TIBJMS_XML_VERIFYHNAME, TIBJMS_XML_VERIFYHOST, TIBJMS_XML_XA
-
-
Constructor Summary
Constructors Constructor Description TibjmsTopic()
Constructs a new TibjmsTopic object.TibjmsTopic(java.lang.String address)
Constructs a new TibjmsTopic object with the given address.TibjmsTopic(java.lang.String address, java.lang.String jndiName)
Internal constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
clone()
boolean
equals(java.lang.Object obj)
java.lang.String
getAddress()
Gets the address of this topic.javax.naming.Reference
getReference()
java.lang.String
getTopicName()
Gets the name of this topic.void
setAddress(java.lang.String address)
Sets the address of this topic.java.lang.String
toString()
Returns a string representation of this object.
-
-
-
Constructor Detail
-
TibjmsTopic
public TibjmsTopic()
Constructs a new TibjmsTopic object.
-
TibjmsTopic
public TibjmsTopic(java.lang.String address)
Constructs a new TibjmsTopic object with the given address.- Parameters:
address
- address of the topic
-
TibjmsTopic
public TibjmsTopic(java.lang.String address, java.lang.String jndiName)
Internal constructor.
-
-
Method Detail
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedException
- Overrides:
clone
in classcom.tibco.tibjms.TibjmsDestination
- Throws:
java.lang.CloneNotSupportedException
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classcom.tibco.tibjms.TibjmsDestination
-
getTopicName
public java.lang.String getTopicName() throws JMSException
Description copied from interface:Topic
Gets the name of this topic.Clients that depend upon the name are not portable.
- Specified by:
getTopicName
in interfaceTopic
- Returns:
- the topic name
- Throws:
JMSException
- if the Jakarta Messaging provider implementation ofTopic
fails to return the topic name due to some internal error.
-
toString
public java.lang.String toString()
Description copied from interface:Topic
Returns a string representation of this object.
-
getReference
public javax.naming.Reference getReference() throws javax.naming.NamingException
- Specified by:
getReference
in interfacejavax.naming.Referenceable
- Throws:
javax.naming.NamingException
-
getAddress
public java.lang.String getAddress()
Gets the address of this topic. Address and name are synonyms.- Overrides:
getAddress
in classcom.tibco.tibjms.TibjmsDestination
- Returns:
- the topic's address
-
setAddress
public void setAddress(java.lang.String address) throws JMSException
Sets the address of this topic. Address and name are synonyms.
Example:
TibjmsTopic topic = new TibjmsTopic();
topic.setAddress("topic.sample");- Overrides:
setAddress
in classcom.tibco.tibjms.TibjmsDestination
- Parameters:
address
- the string representing the address, or name, of this topic- Throws:
JMSException
- if the address has already been set
-
-