Package com.webmethods.jms
Interface WmQueue
-
- All Superinterfaces:
javax.jms.Destination
,javax.jms.Queue
,WmDestination
- All Known Implementing Classes:
WmQueueImpl
,WmTemporaryQueueImpl
public interface WmQueue extends WmDestination, javax.jms.Queue
Interface defining webMethods extensions to javax.jms.Queue.
-
-
Field Summary
-
Fields inherited from interface com.webmethods.jms.WmDestination
SHARED_STATE_ORDERING_NONE, SHARED_STATE_ORDERING_PUBLISHER, SHARED_STATE_ORDERING_SESSION, WILDCARD
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getBroker()
Get the Broker to which this queue belongs.java.lang.String
getLocalName()
Get the local queue name.java.lang.String
getTerritory()
Get the territory to which this queue belongs.-
Methods inherited from interface com.webmethods.jms.WmDestination
getDeadLetterOnly, getEventType, getLocalOnly, getName, getPriorityOrdering, getReadOnly, getSharedState, getSharedStateOrdering, isWildCard, setDeadLetterOnly, setEventType, setLocalOnly, setName, setPriorityOrdering, setReadOnly, setSharedState, setSharedStateOrdering
-
-
-
-
Method Detail
-
getTerritory
java.lang.String getTerritory() throws javax.jms.JMSException
Get the territory to which this queue belongs.- Returns:
- the territory to which this queue belongs, or null to indicate the current territory
- Throws:
javax.jms.JMSException
- if unable to get the territory to which this queue belongs
-
getBroker
java.lang.String getBroker() throws javax.jms.JMSException
Get the Broker to which this queue belongs.- Returns:
- the Broker to which this queue belongs, or null to indicate the current Broker
- Throws:
javax.jms.JMSException
- if unable to get the territory to which this queue belongs
-
getLocalName
java.lang.String getLocalName() throws javax.jms.JMSException
Get the local queue name.- Returns:
- the local queue name
- Throws:
javax.jms.JMSException
- if unable to get the local queue name
-
-