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