Package org.apache.activemq.broker.jmx

Examples of org.apache.activemq.broker.jmx.BrokerView


  }
  public BrokerViewFacade getBrokerAdmin() throws Exception {
    return proxy(BrokerViewFacade.class, brokerService.getAdminView(), brokerService.getBrokerName());
  }
  public ManagedRegionBroker getManagedBroker() throws Exception {
    BrokerView adminView = brokerService.getAdminView();
    if (adminView == null) {
      return null;
    }
    return adminView.getBroker();
  }
View Full Code Here

TOP

Related Classes of org.apache.activemq.broker.jmx.BrokerView

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.