Examples of NotManagedMBean


Examples of org.activiti.management.jmx.testMbeans.NotManagedMBean

    // mbean should be not null
    assertNull(mbeanInfoAssembler.getMBeanInfo(testMbean, testMbean, null));

    // it should return something if at least one of the first paramaters are
    // not null
    NotManagedMBean notManagedMbean = new NotManagedMBean();
    assertNotNull(mbeanInfoAssembler.getMBeanInfo(null, notManagedMbean, "someName"));
    assertNotNull(mbeanInfoAssembler.getMBeanInfo(notManagedMbean, null, "someName"));

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.