Package org.jboss.test.xml.mbeanserver

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


      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"));
View Full Code Here

TOP

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

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.