Interface RolePermissionEvaluator
- All Known Implementing Classes:
RolePermissionsV2
public interface RolePermissionEvaluator
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canList
(RoleContainerModel container) boolean
canManage
(RoleContainerModel container) If the role is a realm role, it returnstrue
ifRealmPermissionEvaluator.canManageRealm()
returnstrue
.boolean
If the role is a realm role, it returnstrue
ifRealmPermissionEvaluator.canManageRealm()
returnstrue
.boolean
canMapClientScope
(RoleModel role) Returnstrue
ifClientPermissions.canManageClientsDefault()
returnstrue
.boolean
canMapComposite
(RoleModel role) Returnstrue
ifRolePermissions.canManageDefault(RoleModel)
andRolePermissions.checkAdminRoles(RoleModel)
returnstrue
.boolean
canMapRole
(RoleModel role) Returnstrue
if the caller hasAdminRoles.MANAGE_USERS
role andRolePermissions.checkAdminRoles(RoleModel)
returnstrue
.boolean
canView
(RoleContainerModel container) If the role is a realm role, it returnstrue
ifRealmPermissionEvaluator.canViewRealm()
returnstrue
.boolean
If the role is a realm role, it returnstrue
ifRealmPermissionEvaluator.canViewRealm()
returnstrue
.Returns the IDs of the roles that the current user can view..void
requireList
(RoleContainerModel container) Throws ForbiddenException ifcanList(RoleContainerModel)
returnsfalse
.void
requireManage
(RoleContainerModel container) Throws ForbiddenException ifcanManage(RoleContainerModel)
returnsfalse
.void
requireManage
(RoleModel role) Throws ForbiddenException ifcanManage(RoleModel)
returnsfalse
.void
Throws ForbiddenException ifcanMapClientScope(RoleModel)
returnsfalse
.void
requireMapComposite
(RoleModel role) Throws ForbiddenException ifcanMapComposite(RoleModel)
returnsfalse
.void
requireMapRole
(RoleModel role) Throws ForbiddenException ifcanMapRole(RoleModel)
returnsfalse
.void
requireView
(RoleContainerModel container) Throws ForbiddenException ifcanView(RoleContainerModel)
returnsfalse
.void
requireView
(RoleModel role) Throws ForbiddenException ifcanView(RoleModel)
returnsfalse
.
-
Method Details
-
canList
Returnstrue
ifcanView(RoleContainerModel)
returnstrue
. Or if the role is a realm role, then it returnstrue
ifRealmPermissionEvaluator.canViewRealm()
returns true or if the caller has at least one of theAdminRoles.QUERY_USERS
,AdminRoles.QUERY_USERS
,AdminRoles.QUERY_CLIENTS
,AdminRoles.QUERY_REALMS
,AdminRoles.QUERY_GROUPS
roles. -
requireList
Throws ForbiddenException ifcanList(RoleContainerModel)
returnsfalse
. -
canMapRole
Returnstrue
if the caller hasAdminRoles.MANAGE_USERS
role andRolePermissions.checkAdminRoles(RoleModel)
returnstrue
. Or if the role is a client role andClientPermissionEvaluator.canMapRoles(ClientModel)
returnstrue
. Or if the caller has permission toRolePermissionManagement.MAP_ROLE_SCOPE
andRolePermissions.checkAdminRoles(RoleModel)
returnstrue
. For V2 only: Also if the caller has a permission toRolePermissionManagement.MAP_ROLE_SCOPE
all roles. -
requireMapRole
Throws ForbiddenException ifcanMapRole(RoleModel)
returnsfalse
. -
canManage
If the role is a realm role, it returnstrue
ifRealmPermissionEvaluator.canManageRealm()
returnstrue
. If the role is a client role, it returnstrue
ifClientPermissionEvaluator.canConfigure(ClientModel)
returnstrue
. -
requireManage
Throws ForbiddenException ifcanManage(RoleModel)
returnsfalse
. -
canView
If the role is a realm role, it returnstrue
ifRealmPermissionEvaluator.canViewRealm()
returnstrue
. If the role is a client role, it returnstrue
ifClientPermissionEvaluator.canView(ClientModel)
returnstrue
. -
requireView
Throws ForbiddenException ifcanView(RoleModel)
returnsfalse
. -
canMapClientScope
Returnstrue
ifClientPermissions.canManageClientsDefault()
returnstrue
. Or if the role is a client role andClientPermissionEvaluator.canMapClientScopeRoles(ClientModel)
returnstrue
. Or if the caller has permission toRolePermissionManagement.MAP_ROLE_CLIENT_SCOPE_SCOPE
. For V2 only: Also if the caller has a permission toRolePermissionManagement.MAP_ROLE_CLIENT_SCOPE_SCOPE
all roles. -
requireMapClientScope
Throws ForbiddenException ifcanMapClientScope(RoleModel)
returnsfalse
. -
canMapComposite
Returnstrue
ifRolePermissions.canManageDefault(RoleModel)
andRolePermissions.checkAdminRoles(RoleModel)
returnstrue
. Or if the role is a client role andClientPermissionEvaluator.canMapCompositeRoles(ClientModel)
returnstrue
. Or if the caller has permission toRolePermissionManagement.MAP_ROLE_COMPOSITE_SCOPE
andRolePermissions.checkAdminRoles(RoleModel)
returnstrue
. For V2 only: Also if the caller has a permission toRolePermissionManagement.MAP_ROLE_COMPOSITE_SCOPE
all roles. -
requireMapComposite
Throws ForbiddenException ifcanMapComposite(RoleModel)
returnsfalse
. -
canManage
If the role is a realm role, it returnstrue
ifRealmPermissionEvaluator.canManageRealm()
returnstrue
. If the role is a client role, it returnstrue
ifClientPermissionEvaluator.canConfigure(ClientModel)
returnstrue
. -
requireManage
Throws ForbiddenException ifcanManage(RoleContainerModel)
returnsfalse
. -
canView
If the role is a realm role, it returnstrue
ifRealmPermissionEvaluator.canViewRealm()
returnstrue
. If the role is a client role, it returnstrue
ifClientPermissionEvaluator.canView(ClientModel)
returnstrue
. -
requireView
Throws ForbiddenException ifcanView(RoleContainerModel)
returnsfalse
. -
getRoleIdsWithViewPermission
Returns the IDs of the roles that the current user can view..- Returns:
- Stream of IDs of roles with view permission.
-