Uses of Interface
javax.jms.Destination

Packages that use Destination
javax.jms   
 

Uses of Destination in javax.jms
 

Subinterfaces of Destination in javax.jms
 interface Queue
          A Queue object encapsulates a provider-specific queue name.
 interface TemporaryQueue
          A TemporaryQueue is a unique Queue object created for the duration of a QueueConnection.
 interface TemporaryTopic
          A TemporaryTopic is a unique Topic object created for the duration of a TopicConnection.
 interface Topic
          A Topic object encapsulates a provider-specific topic name.
 

Methods in javax.jms that return Destination
 Destination Message.getJMSReplyTo()
          Get where a reply to this message should be sent.
 Destination Message.getJMSDestination()
          Get the destination for this message.
 

Methods in javax.jms with parameters of type Destination
 void Message.setJMSReplyTo(Destination replyTo)
          Set where a reply to this message should be sent.
 void Message.setJMSDestination(Destination destination)
          Set the destination for this message.