Interface PasswordPolicyStateExtendedOperationHandlerCfg
-
- All Superinterfaces:
Configuration
,ExtendedOperationHandlerCfg
public interface PasswordPolicyStateExtendedOperationHandlerCfg extends ExtendedOperationHandlerCfg
A server-side interface for querying Password Policy State Extended Operation Handler settings.The Password Policy State Extended Operation Handler provides the ability for administrators to request and optionally alter password policy state information for a specified user.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addPasswordPolicyStateChangeListener(ConfigurationChangeListener<PasswordPolicyStateExtendedOperationHandlerCfg> listener)
Register to be notified when this Password Policy State Extended Operation Handler is changed.Class<? extends PasswordPolicyStateExtendedOperationHandlerCfg>
configurationClass()
Gets the configuration class associated with this Password Policy State Extended Operation Handler.String
getJavaClass()
Gets the "java-class" property.void
removePasswordPolicyStateChangeListener(ConfigurationChangeListener<PasswordPolicyStateExtendedOperationHandlerCfg> listener)
Deregister an existing Password Policy State Extended Operation Handler configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.ExtendedOperationHandlerCfg
addChangeListener, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends PasswordPolicyStateExtendedOperationHandlerCfg> configurationClass()
Gets the configuration class associated with this Password Policy State Extended Operation Handler.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceExtendedOperationHandlerCfg
- Returns:
- Returns the configuration class associated with this Password Policy State Extended Operation Handler.
-
addPasswordPolicyStateChangeListener
void addPasswordPolicyStateChangeListener(ConfigurationChangeListener<PasswordPolicyStateExtendedOperationHandlerCfg> listener)
Register to be notified when this Password Policy State Extended Operation Handler is changed.- Parameters:
listener
- The Password Policy State Extended Operation Handler configuration change listener.
-
removePasswordPolicyStateChangeListener
void removePasswordPolicyStateChangeListener(ConfigurationChangeListener<PasswordPolicyStateExtendedOperationHandlerCfg> listener)
Deregister an existing Password Policy State Extended Operation Handler configuration change listener.- Parameters:
listener
- The Password Policy State Extended Operation Handler configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Password Policy State Extended Operation Handler implementation.
Default value:
org.opends.server.extensions.PasswordPolicyStateExtendedOperation
- Specified by:
getJavaClass
in interfaceExtendedOperationHandlerCfg
- Returns:
- Returns the value of the "java-class" property.
-
-