Package org.jasig.portal.groups

Examples of org.jasig.portal.groups.CompositeEntityIdentifier


* @exception javax.naming.InvalidNameException
*/
public static String parseLocalKey(String compositeKey)
throws InvalidNameException, GroupsException
{
    return new CompositeEntityIdentifier(compositeKey, new Object().getClass()).getLocalKey();
}
View Full Code Here


* @exception javax.naming.InvalidNameException
*/
public static String parseLocalKey(String compositeKey)
throws InvalidNameException, GroupsException
{
    return new CompositeEntityIdentifier(compositeKey, new Object().getClass()).getLocalKey();
}
View Full Code Here

        if (group == null) {
            if (warnedGroupKeys.add(portalGroupKey)) {
                logger.warn("No group found for key {}, no aggregate group mapping will be done and the group key will be ignored.", portalGroupKey);
            }
           
            final CompositeEntityIdentifier compositeEntityIdentifier = new CompositeEntityIdentifier(portalGroupKey, IEntityGroup.class);
            final String serviceName = compositeEntityIdentifier.getServiceName().toString();
            final String groupKey = compositeEntityIdentifier.getLocalKey();
            return this.getGroupMapping(serviceName, groupKey);
        }
       
        final String groupService = group.getServiceName().toString();
        final String groupName = group.getName();
View Full Code Here

* @exception javax.naming.InvalidNameException
*/
public static String parseLocalKey(String compositeKey)
throws InvalidNameException, GroupsException
{
    return new CompositeEntityIdentifier(compositeKey, new Object().getClass()).getLocalKey();
}
View Full Code Here

TOP

Related Classes of org.jasig.portal.groups.CompositeEntityIdentifier

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.