Examples of SamlToJ2EE


Examples of org.apache.cxf.fediz.was.mapping.config.SamlToJ2EE

        Map<String, List<String>> map = new HashMap<String, List<String>>(10);

        Iterator<SamlToJ2EE> i = localmappings.getSamlToJ2EE().iterator();
        while (i.hasNext()) {
            SamlToJ2EE mapping = i.next();
            if (LOG.isDebugEnabled()) {
                LOG.debug(mapping.getClaim() + " mapped to "
                    + mapping.getGroups().getJ2EeGroup().size() + " entries");
               
            }
            map.put(mapping.getClaim(), mapping.getGroups().getJ2EeGroup());
        }

       
        return map;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.