List of usage examples for javax.jms Topic Topic
Topic
From source file:org.openmrs.event.EventEngine.java
/** * @see Event#getDestination(String)/*from w ww .ja va 2 s .c om*/ */ public Destination getDestination(final String topicName) { return new Topic() { @Override public String getTopicName() throws JMSException { return topicName; } }; }