1 6 7 package org.jfox.jms; 8 9 import javax.jms.JMSException ; 10 import javax.jms.Queue ; 11 12 15 16 public class JMSQueue extends JMSDestination implements Queue { 17 18 public JMSQueue(String name) { 19 super(name); 20 } 21 22 public String getQueueName() throws JMSException { 23 return getName(); 24 } 25 26 protected boolean isTopic() { 27 return false; 28 } 29 30 public static void main(String [] args) { 31 32 } 33 } 34 | Popular Tags |