Interface PermissionResolverAware
-
- All Known Implementing Classes:
AbstractLdapRealm
,ActiveDirectoryRealm
,AuthorizingRealm
,DefaultLdapRealm
,IniRealm
,JdbcRealm
,JndiLdapRealm
,ModularRealmAuthorizer
,PropertiesRealm
,SimpleAccountRealm
,TextConfigurationRealm
public interface PermissionResolverAware
Interface implemented by a component that wishes to use any application-configured PermissionResolver 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:
- 0.9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setPermissionResolver(PermissionResolver pr)
Sets the specified PermissionResolver on this instance.
-
-
-
Method Detail
-
setPermissionResolver
void setPermissionResolver(PermissionResolver pr)
Sets the specified PermissionResolver on this instance.- Parameters:
pr
- the PermissionResolver being set.
-
-