Package org.jboss.jms.server.destination

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


@ManagementObject(componentType = @ManagementComponent(type = "JMSDestination", subtype = "Queue"), properties = ManagementProperties.EXPLICIT)
public class Queue implements MBeanRegistration, QueueMBean {
  private QueueService delegate;

  public Queue() {
    delegate = new QueueService();
  }
View Full Code Here


  public Queue() {
    delegate = new QueueService();
  }

  public Queue(boolean createProgramatically) {
    delegate = new QueueService(createProgramatically);
  }
View Full Code Here

/*     */ {
/*     */   private QueueService delegate;
/*     */
/*     */   public Queue()
/*     */   {
/*  55 */     this.delegate = new QueueService();
/*     */   }
View Full Code Here

/*     */   {
/*  55 */     this.delegate = new QueueService();
/*     */   }
/*     */
/*     */   public Queue(boolean createProgramatically) {
/*  59 */     this.delegate = new QueueService(createProgramatically);
/*     */   }
View Full Code Here

TOP

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

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.