Interface ScramSha256PasswordStorageSchemeCfg
-
- All Superinterfaces:
Configuration
,PasswordStorageSchemeCfg
public interface ScramSha256PasswordStorageSchemeCfg extends PasswordStorageSchemeCfg
A server-side interface for querying SCRAM-SHA-256 Password Storage Scheme settings.The SCRAM-SHA-256 Password Storage Scheme provides a mechanism for encoding user passwords for use with the SASL SCRAM authentication mechanism defined in RFC 5802.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addScramSha256ChangeListener(ConfigurationChangeListener<ScramSha256PasswordStorageSchemeCfg> listener)
Register to be notified when this SCRAM-SHA-256 Password Storage Scheme is changed.Class<? extends ScramSha256PasswordStorageSchemeCfg>
configurationClass()
Gets the configuration class associated with this SCRAM-SHA-256 Password Storage Scheme.String
getJavaClass()
Gets the "java-class" property.int
getScramIterations()
Gets the "scram-iterations" property.void
removeScramSha256ChangeListener(ConfigurationChangeListener<ScramSha256PasswordStorageSchemeCfg> listener)
Deregister an existing SCRAM-SHA-256 Password Storage Scheme configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
Methods inherited from interface org.forgerock.opendj.server.config.server.PasswordStorageSchemeCfg
addChangeListener, isEnabled, removeChangeListener
-
-
-
-
Method Detail
-
configurationClass
Class<? extends ScramSha256PasswordStorageSchemeCfg> configurationClass()
Gets the configuration class associated with this SCRAM-SHA-256 Password Storage Scheme.- Specified by:
configurationClass
in interfaceConfiguration
- Specified by:
configurationClass
in interfacePasswordStorageSchemeCfg
- Returns:
- Returns the configuration class associated with this SCRAM-SHA-256 Password Storage Scheme.
-
addScramSha256ChangeListener
void addScramSha256ChangeListener(ConfigurationChangeListener<ScramSha256PasswordStorageSchemeCfg> listener)
Register to be notified when this SCRAM-SHA-256 Password Storage Scheme is changed.- Parameters:
listener
- The SCRAM-SHA-256 Password Storage Scheme configuration change listener.
-
removeScramSha256ChangeListener
void removeScramSha256ChangeListener(ConfigurationChangeListener<ScramSha256PasswordStorageSchemeCfg> listener)
Deregister an existing SCRAM-SHA-256 Password Storage Scheme configuration change listener.- Parameters:
listener
- The SCRAM-SHA-256 Password Storage Scheme configuration change listener.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the SCRAM-SHA-256 Password Storage Scheme implementation.
Default value:
org.opends.server.extensions.ScramSha256PasswordStorageScheme
- Specified by:
getJavaClass
in interfacePasswordStorageSchemeCfg
- Returns:
- Returns the value of the "java-class" property.
-
getScramIterations
int getScramIterations()
Gets the "scram-iterations" property.The number of iterations to use when deriving the salted password.
Default value:
10000
- Returns:
- Returns the value of the "scram-iterations" property.
-
-