Examples of TargetMBean


Examples of org.jboss.test.jmx.proxy.TargetMBean

   {
      ObjectName name = new ObjectName("jboss.test:name=ProxyTests");
      Object proxy = getServer().getAttribute(name, "Proxy");
      assertNotNull(proxy);
      assertTrue(proxy instanceof TargetMBean);
      TargetMBean target = (TargetMBean) proxy;
      assertEquals(ServiceMBean.STARTED, target.getState());
   }
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.