1 7 package org.jboss.jms.destination; 8 9 import javax.jms.Queue ; 10 import javax.jms.JMSException ; 11 12 18 public class JBossQueue 19 extends JBossDestination 20 implements Queue  21 { 22 24 26 28 30 35 public JBossQueue(String name) 36 { 37 super(name); 38 } 39 40 42 44 public String getQueueName() 45 throws JMSException  46 { 47 return super.getName(); 48 } 49 50 52 54 56 58 } 59 | Popular Tags |