Package org.jboss.test.xml.mbeanserver

Examples of org.jboss.test.xml.mbeanserver.MBeanAttribute


      assertTrue("Name == jboss.security.tests:service=DynamicLoginConfig",
         mbean.getName().equals("jboss.security.tests:service=DynamicLoginConfig"));
      Map attributes = mbean.getAttributeMap();
      assertTrue("There are 2 attributes",
         attributes.size() == 2);
      MBeanAttribute attr = (MBeanAttribute) attributes.get("PolicyConfig");
      Object value = attr.getValue();
      assertTrue("Value isA PolicyConfig",
          value instanceof PolicyConfig );
      PolicyConfig pc = (PolicyConfig) value;
      assertTrue("There 1 AuthenticationInfo",
         pc.size() == 1);
      AuthenticationInfo auth = pc.get("conf1");
      assertTrue("The AuthenticationInfo name ic config1",
         auth != null);
      AppConfigurationEntry[] ace = auth.getAppConfigurationEntry();
      assertTrue("The AppConfigurationEntry has one entry",
         ace != null && ace.length == 1);
      assertTrue("LoginModuleName",
         ace[0].getLoginModuleName().equals("org.jboss.security.auth.spi.IdentityLoginModule"));

      attr = (MBeanAttribute) attributes.get("UserHome");
      assertTrue("Name == UserHome",
         attr.getName().equals("UserHome"));
      assertTrue("Text != null",
         attr.getText() != null);
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.xml.mbeanserver.MBeanAttribute

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.