com.filenet.api.engine
Interface AuthorizationServices
-
public interface AuthorizationServicesThis interface provides a set of utility methods for custom components participating in authorization operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description booleanisUserInGroup(User user, java.lang.String groupIdentity)Determine if the specified user is a member of the specified group, taking account of nested groups.
-
-
-
Method Detail
-
isUserInGroup
boolean isUserInGroup(User user, java.lang.String groupIdentity)
Determine if the specified user is a member of the specified group, taking account of nested groups.- Parameters:
user- -- the user about whom the question is being askedgroupIdentity- -- a string identifying the group about which the question is being asked, in any of the forms acceptable to Factory.Group.fetchInstance.- Returns:
- True iff the user is a member (transitively) of the group.
-
-