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 and
Realm implementations since they
are the ones performing permission checks and need to know how to resolve Strings into
Permission instances.
- Since:
- 0.9
-
Method Summary
Modifier and TypeMethodDescriptionvoidSets the specified PermissionResolver on this instance.
-
Method Details
-
setPermissionResolver
Sets the specified PermissionResolver on this instance.- Parameters:
pr- the PermissionResolver being set.
-