Uses of Class
com.sas.lsaf.security.privilege.PrivilegeNotFoundException
Packages that use PrivilegeNotFoundException
Package
Description
Service and classes for identifying and using privileges in the system.
Service and class definitions for manipulating and creating roles, their availability in contexts, and their
membership lists.
-
Uses of PrivilegeNotFoundException in com.sas.lsaf.security.privilege
Methods in com.sas.lsaf.security.privilege that throw PrivilegeNotFoundExceptionModifier and TypeMethodDescriptionGlobalPrivilegeService.getAllGrantees(Set<String> globalPrivilegeIds) Gets the set of users who have been granted the specified set of global privileges.GlobalPrivilegeService.getGrantees(String globalPrivilegeId) Gets the set of users who have been granted the specified global privilege.voidGlobalPrivilegeService.grantPrivilege(String userId, String globalPrivilegeId) Grants a global privilege to the specified user.voidGlobalPrivilegeService.grantPrivileges(String userId, Set<String> globalPrivilegeIds) Grants the global privileges to the specified user.voidGlobalPrivilegeService.grantPrivilegesToUsers(Set<String> userIds, Set<String> globalPrivilegeIds) Grants the global privileges to the specified set of users.voidGlobalPrivilegeService.revokePrivilege(String userId, String globalPrivilegeId) Revokes a global privilege from the specified user.voidGlobalPrivilegeService.revokePrivileges(String userId, Set<String> globalPrivilegeIds) Revokes a set of global privileges from the set of users.voidGlobalPrivilegeService.revokePrivilegesFromUsers(Set<String> userIds, Set<String> globalPrivilegeIds) Revokes a set of global privileges from a set of users.voidGlobalPrivilegeService.setPrivileges(String userId, Set<String> globalPrivilegeIds) Sets the global privileges that are granted to the specified user. -
Uses of PrivilegeNotFoundException in com.sas.lsaf.security.role
Methods in com.sas.lsaf.security.role that throw PrivilegeNotFoundExceptionModifier and TypeMethodDescriptionRoleService.createRole(String contextId, String name, String description, Set<String> scopedPrivilegeIds, Set<Principal> members) Creates a defined role at the specified context.RoleService.getRoleDescriptorsByContextAndPrivilege(String contextId, String scopedPrivilegeId) Gets all of the roles at a given context that include the specified privilege.RoleService.updateRole(Role role) Updates the name, description, privileges or members of the specified role.