public interface AccessControlHandlerCfg extends Configuration
Access Control Handlers manage the application-wide access control. The OpenDJ access control handler is defined through an extensible interface, so that alternate implementations can be created. Only one access control handler may be active in the server at any given time.
Modifier and Type | Method and Description |
---|---|
void |
addChangeListener(ConfigurationChangeListener<AccessControlHandlerCfg> listener)
Register to be notified when this Access Control Handler is changed.
|
Class<? extends AccessControlHandlerCfg> |
configurationClass()
Gets the configuration class associated with this Access Control Handler.
|
String |
getJavaClass()
Gets the "java-class" property.
|
boolean |
isEnabled()
Gets the "enabled" property.
|
void |
removeChangeListener(ConfigurationChangeListener<AccessControlHandlerCfg> listener)
Deregister an existing Access Control Handler configuration change listener.
|
dn
Class<? extends AccessControlHandlerCfg> configurationClass()
configurationClass
in interface Configuration
void addChangeListener(ConfigurationChangeListener<AccessControlHandlerCfg> listener)
listener
- The Access Control Handler configuration change listener.void removeChangeListener(ConfigurationChangeListener<AccessControlHandlerCfg> listener)
listener
- The Access Control Handler configuration change listener.boolean isEnabled()
Indicates whether the Access Control Handler is enabled. If set to FALSE, then no access control is enforced, and any client (including unauthenticated or anonymous clients) could be allowed to perform any operation if not subject to other restrictions, such as those enforced by the privilege subsystem.
String getJavaClass()
Specifies the fully-qualified name of the Java class that provides the Access Control Handler implementation.
Copyright 2010-2017 ForgeRock AS.