| org.kuali.core.service.AuthorizationService
All known Subclasses: org.kuali.core.service.impl.AuthorizationServiceImpl,
AuthorizationService | public interface AuthorizationService (Code) | | Service used to control user access to classes which implement AuthorizationTarget
|
getAuthorizedWorkgroups | public Set getAuthorizedWorkgroups(String action, String targetType)(Code) | | Parameters: user - Parameters: action - Parameters: targetType - Set containing the names of the workgroups authorized for the action on the target type. |
isAuthorized | public boolean isAuthorized(UniversalUser user, String action, String targetType)(Code) | | Parameters: user - Parameters: action - Parameters: targetType - true if the given user is a member of a group which is allowed to take the given action on objects matching the giventargetType |
isAuthorizedToViewAttribute | public boolean isAuthorizedToViewAttribute(UniversalUser user, String entryName, String attributeName)(Code) | | Checks security of field. If field is secured by a workgroup, checks user is in workgroup.
true if user is authorized to view attribute |
|
|