Package org.jboss.jopr.jsfunit.util.jaas

Examples of org.jboss.jopr.jsfunit.util.jaas.SecuredProfileServiceAccess


  public ProfileServiceUtils( boolean secured ) throws NamingException
  {
    this.secured = secured;

    SecuredProfileServiceAccess jaasUtils = null;

    jaasUtils = secured ? SecuredProfileServiceAccess.getSecuredInstance() : SecuredProfileServiceAccess.getUnsecuredInstance();

    // NPE will occur here if exception happens above.
    // TODO: Move ejtt's members initialization to some init() method to avoid this nasty thing.
    this.profileService = jaasUtils.getProfileService();
    this.managementView = jaasUtils.getManagementView();
    this.deploymentManager = jaasUtils.getDeploymentManager();
  }
View Full Code Here

TOP

Related Classes of org.jboss.jopr.jsfunit.util.jaas.SecuredProfileServiceAccess

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.