Class ShibbolethGroupComputer
- java.lang.Object
-
- org.nuxeo.ecm.platform.computedgroups.AbstractGroupComputer
-
- org.nuxeo.ecm.platform.shibboleth.computedgroups.ShibbolethGroupComputer
-
- All Implemented Interfaces:
GroupComputer
public class ShibbolethGroupComputer extends AbstractGroupComputer
-
-
Constructor Summary
Constructors Constructor Description ShibbolethGroupComputer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getAllGroupIds()Return all group ids.protected StringgetDirectoryName()List<String>getGroupMembers(String arg0)Returns the members for a give group.List<String>getGroupsForUser(NuxeoPrincipalImpl nxPrincipal)Returns the group names for a give User.List<String>getParentsGroupNames(String arg0)Return parent groups.List<String>getSubGroupsNames(String arg0)Returns children groups.-
Methods inherited from class org.nuxeo.ecm.platform.computedgroups.AbstractGroupComputer
getUM, hasGroup, searchGroups, searchGroups
-
-
-
-
Method Detail
-
getDirectoryName
protected String getDirectoryName()
-
getAllGroupIds
public List<String> getAllGroupIds()
Description copied from interface:GroupComputerReturn all group ids. If you class can not efficiently compute this list, you can return an empty list. In this case you need to implement the searchGroups method.
-
getGroupMembers
public List<String> getGroupMembers(String arg0)
Description copied from interface:GroupComputerReturns the members for a give group.
-
getGroupsForUser
public List<String> getGroupsForUser(NuxeoPrincipalImpl nxPrincipal)
Description copied from interface:GroupComputerReturns the group names for a give User.
-
getParentsGroupNames
public List<String> getParentsGroupNames(String arg0)
Description copied from interface:GroupComputerReturn parent groups.
-
getSubGroupsNames
public List<String> getSubGroupsNames(String arg0)
Description copied from interface:GroupComputerReturns children groups.
-
-