Package org.jboss.jms.server.destination

Examples of org.jboss.jms.server.destination.TopicService


{
   private TopicService delegate;

   public Topic()
   {
      delegate = new TopicService();
   }
View Full Code Here


   {
      delegate = new TopicService();
   }
   public Topic(boolean createProgramatically)
   {
      delegate = new TopicService(createProgramatically);
   }
View Full Code Here

/*     */ {
/*     */   private TopicService delegate;
/*     */
/*     */   public Topic()
/*     */   {
/*  54 */     this.delegate = new TopicService();
/*     */   }
View Full Code Here

/*     */   {
/*  54 */     this.delegate = new TopicService();
/*     */   }
/*     */
/*     */   public Topic(boolean createProgramatically) {
/*  58 */     this.delegate = new TopicService(createProgramatically);
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.jms.server.destination.TopicService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.