Package org.josso.gateway.identity.service

Examples of org.josso.gateway.identity.service.BaseRoleImpl


     
      //Map the Portal Identity information to JOSSO Identity information
      BaseRole[] roles = new BaseRole[userRoles.length];    
      for(int i=0; i<userRoles.length; i++)
      {
         roles[i] = new BaseRoleImpl(userRoles[i]);
      }
     
      return roles;
   }
View Full Code Here


    {
        boolean rc = super.commit();
       
       
        Set ssoRolePrincipals = _savedSubject.getPrincipals(SSORole.class);
        Group targetGrp = new BaseRoleImpl("Roles");
        Iterator i = ssoRolePrincipals.iterator();
        Set cour = new java.util.HashSet();
        while (i.hasNext())
        {
            Principal p = (Principal)i.next();           
View Full Code Here

TOP

Related Classes of org.josso.gateway.identity.service.BaseRoleImpl

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.