Interface PermissionResolverAware
-
- All Known Implementing Classes:
AbstractLdapRealm,ActiveDirectoryRealm,AuthorizingRealm,DefaultLdapRealm,IniRealm,JdbcRealm,JndiLdapRealm,ModularRealmAuthorizer,PropertiesRealm,SimpleAccountRealm,TextConfigurationRealm
public interface PermissionResolverAwareInterface 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
AuthorizerandRealmimplementations since they are the ones performing permission checks and need to know how to resolve Strings intoPermissioninstances.- Since:
- 0.9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetPermissionResolver(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.
-
-