Interface PBKDF2PasswordStorageSchemeCfgClient
-
- All Superinterfaces:
ConfigurationClient,PasswordStorageSchemeCfgClient
public interface PBKDF2PasswordStorageSchemeCfgClient extends PasswordStorageSchemeCfgClient
A client-side interface for reading and modifying PBKDF2 Password Storage Scheme settings.The PBKDF2 Password Storage Scheme provides a mechanism for encoding user passwords using the PBKDF2 message digest algorithm.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectDefinition<? extends PBKDF2PasswordStorageSchemeCfgClient,? extends PBKDF2PasswordStorageSchemeCfg>definition()Get the configuration definition associated with this PBKDF2 Password Storage Scheme.StringgetJavaClass()Gets the "java-class" property.intgetPBKDF2Iterations()Gets the "pbkdf2-iterations" property.voidsetJavaClass(String value)Sets the "java-class" property.voidsetPBKDF2Iterations(Integer value)Sets the "pbkdf2-iterations" property.-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
Methods inherited from interface org.forgerock.opendj.server.config.client.PasswordStorageSchemeCfgClient
isEnabled, setEnabled
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends PBKDF2PasswordStorageSchemeCfgClient,? extends PBKDF2PasswordStorageSchemeCfg> definition()
Get the configuration definition associated with this PBKDF2 Password Storage Scheme.- Specified by:
definitionin interfaceConfigurationClient- Specified by:
definitionin interfacePasswordStorageSchemeCfgClient- Returns:
- Returns the configuration definition associated with this PBKDF2 Password Storage Scheme.
-
getJavaClass
String getJavaClass()
Gets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the PBKDF2 Password Storage Scheme implementation.
- Specified by:
getJavaClassin interfacePasswordStorageSchemeCfgClient- Returns:
- Returns the value of the "java-class" property.
-
setJavaClass
void setJavaClass(String value) throws PropertyException
Sets the "java-class" property.Specifies the fully-qualified name of the Java class that provides the PBKDF2 Password Storage Scheme implementation.
- Specified by:
setJavaClassin interfacePasswordStorageSchemeCfgClient- Parameters:
value- The value of the "java-class" property.- Throws:
PropertyException- If the new value is invalid.
-
getPBKDF2Iterations
int getPBKDF2Iterations()
Gets the "pbkdf2-iterations" property.The number of algorithm iterations to make. NIST recommends at least 1000.
- Returns:
- Returns the value of the "pbkdf2-iterations" property.
-
setPBKDF2Iterations
void setPBKDF2Iterations(Integer value) throws PropertyException
Sets the "pbkdf2-iterations" property.The number of algorithm iterations to make. NIST recommends at least 1000.
- Parameters:
value- The value of the "pbkdf2-iterations" property.- Throws:
PropertyException- If the new value is invalid.
-
-