Package org.jboss.identity.federation.web.interfaces

Examples of org.jboss.identity.federation.web.interfaces.IRoleValidator


               return userName;
            }
         };    
        
         //Validate the roles
         IRoleValidator roleValidator = (IRoleValidator) options.get(GeneralConstants.ROLE_VALIDATOR);
         boolean validRole = roleValidator.userInRole(principal, roles);
         if(!validRole)
         {
            if(trace)
               log.trace("Invalid role:" + roles);
            principal = null;
View Full Code Here

TOP

Related Classes of org.jboss.identity.federation.web.interfaces.IRoleValidator

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.