Interface PasswordModifyExtendedOperationHandlerCfg
-
- All Superinterfaces:
Configuration
,ExtendedOperationHandlerCfg
public interface PasswordModifyExtendedOperationHandlerCfg extends ExtendedOperationHandlerCfg
A server-side interface for querying Password Modify Extended Operation Handler settings.The Password Modify Extended Operation Handler allows end users to change their own passwords, or administrators to reset user passwords.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addPasswordModifyChangeListener(ConfigurationChangeListener<PasswordModifyExtendedOperationHandlerCfg> listener)
Register to be notified when this Password Modify Extended Operation Handler is changed.Class<? extends PasswordModifyExtendedOperationHandlerCfg>
configurationClass()
Gets the configuration class associated with this Password Modify Extended Operation Handler.SortedSet<String>
getIdentityMapper()
Gets the "identity-mapper" property.SortedSet<Dn>
getIdentityMapperDns()
Gets the "identity-mapper" property as a set of DNs.String
getJavaClass()
Gets the "java-class" property.void
removePasswordModifyChangeListener(ConfigurationChangeListener<PasswordModifyExtendedOperationHandlerCfg> listener)
Deregister an existing Password Modify 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 PasswordModifyExtendedOperationHandlerCfg> configurationClass()
Gets the configuration class associated with this Password Modify Extended Operation Handler.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfaceExtendedOperationHandlerCfg
- Returns:
- Returns the configuration class associated with this Password Modify Extended Operation Handler.
-
addPasswordModifyChangeListener
void addPasswordModifyChangeListener(ConfigurationChangeListener<PasswordModifyExtendedOperationHandlerCfg> listener)
Register to be notified when this Password Modify Extended Operation Handler is changed.- Parameters:
listener
- The Password Modify Extended Operation Handler configuration change listener.
-
removePasswordModifyChangeListener
void removePasswordModifyChangeListener(ConfigurationChangeListener<PasswordModifyExtendedOperationHandlerCfg> listener)
Deregister an existing Password Modify Extended Operation Handler configuration change listener.- Parameters:
listener
- The Password Modify Extended Operation Handler configuration change listener.
-
getIdentityMapper
SortedSet<String> getIdentityMapper()
Gets the "identity-mapper" property.Specifies the name(s) of the identity mapper(s) that should be used in conjunction with the password modify extended operation.
This property is used to identify a user based on an authorization ID in the 'u:' form. Changes to this property take effect immediately.
- Returns:
- Returns an unmodifiable set containing the values of the "identity-mapper" property.
-
getIdentityMapperDns
SortedSet<Dn> getIdentityMapperDns()
Gets the "identity-mapper" property as a set of DNs.Specifies the name(s) of the identity mapper(s) that should be used in conjunction with the password modify extended operation.
This property is used to identify a user based on an authorization ID in the 'u:' form. Changes to this property take effect immediately.
- Returns:
- Returns the DN values of the "identity-mapper" property.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the Password Modify Extended Operation Handler implementation.
Default value:
org.opends.server.extensions.PasswordModifyExtendedOperation
- Specified by:
getJavaClass
in interfaceExtendedOperationHandlerCfg
- Returns:
- Returns the value of the "java-class" property.
-
-