Interface RolePermissionResolverAware
-
- All Known Implementing Classes:
AbstractLdapRealm
,ActiveDirectoryRealm
,AuthorizingRealm
,DefaultLdapRealm
,IniRealm
,JdbcRealm
,JndiLdapRealm
,ModularRealmAuthorizer
,PropertiesRealm
,SimpleAccountRealm
,TextConfigurationRealm
public interface RolePermissionResolverAware
Interface implemented by a component that wishes to use any application-configured RolePermissionResolver that might already exist instead of potentially creating one itself.This is mostly implemented by
Authorizer
andRealm
implementations since they are the ones performing permission checks and need to know how to resolve Strings intoPermission
instances.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setRolePermissionResolver(RolePermissionResolver rpr)
Sets the specified RolePermissionResolver on this instance.
-
-
-
Method Detail
-
setRolePermissionResolver
void setRolePermissionResolver(RolePermissionResolver rpr)
Sets the specified RolePermissionResolver on this instance.- Parameters:
rpr
- the RolePermissionResolver being set.
-
-