Package org.jboss.test.jmx.compliance.relation.support

Examples of org.jboss.test.jmx.compliance.relation.support.Trivial


            fail("addRelation allowed when not registered");

         ObjectName badRelation = null;
         server.registerMBean(rs, service);
         badRelation = new ObjectName("test:type=bad");
         server.registerMBean(new Trivial(), badRelation);

         caught = false;
         try
         {
            rs.addRelation(badRelation);
View Full Code Here

TOP

Related Classes of org.jboss.test.jmx.compliance.relation.support.Trivial

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.