1 22 package org.jboss.test.web.mock; 23 24 import java.io.Serializable ; 25 26 import javax.jms.JMSException ; 27 import javax.jms.Queue ; 28 29 35 public class QueueBean implements Queue , Serializable  36 { 37 private static final long serialVersionUID = 1; 38 private String name; 39 40 public QueueBean() 41 { 42 } 43 public QueueBean(String name) 44 { 45 this.name = name; 46 } 47 48 public String getQueueName() throws JMSException  49 { 50 return name; 51 } 52 53 } 54 | Popular Tags |