Package org.apache.qpid.management.domain.handler.impl

Examples of org.apache.qpid.management.domain.handler.impl.QpidDomainObjectMBean


   * @param objectName the name of the queue MBean.
   * @throws Exception when the creation or the registration fails.
   */
  public void createQueue(ObjectName objectName) throws Exception
  {
    QpidDomainObjectMBean queue = new QpidDomainObject();
    _mxServer.registerMBean(queue, objectName);
   
    sendNotification(
        EntityLifecycleNotification.INSTANCE_ADDED_NOTIFICATION_TYPE,
        objectName);
View Full Code Here

TOP

Related Classes of org.apache.qpid.management.domain.handler.impl.QpidDomainObjectMBean

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.