public final class CryptPasswordStorageSchemeCfgDefn extends ManagedObjectDefinition<CryptPasswordStorageSchemeCfgClient,CryptPasswordStorageSchemeCfg>
The Crypt Password Storage Scheme provides a mechanism for encoding user passwords like Unix crypt does. Like on most Unix systems, the password may be encrypted using different algorithms, either Unix crypt, md5, sha256 or sha512.
Modifier and Type | Class and Description |
---|---|
static class |
CryptPasswordStorageSchemeCfgDefn.CryptPasswordStorageEncryptionAlgorithm
Defines the set of permissable values for the "crypt-password-storage-encryption-algorithm" property.
|
Modifier and Type | Method and Description |
---|---|
CryptPasswordStorageSchemeCfgClient |
createClientConfiguration(ManagedObject<? extends CryptPasswordStorageSchemeCfgClient> impl)
Creates a client configuration view of the provided managed
object.
|
CryptPasswordStorageSchemeCfg |
createServerConfiguration(ServerManagedObject<? extends CryptPasswordStorageSchemeCfg> impl)
Creates a server configuration view of the provided server
managed object.
|
EnumPropertyDefinition<CryptPasswordStorageSchemeCfgDefn.CryptPasswordStorageEncryptionAlgorithm> |
getCryptPasswordStorageEncryptionAlgorithmPropertyDefinition()
Get the "crypt-password-storage-encryption-algorithm" property definition.
|
BooleanPropertyDefinition |
getEnabledPropertyDefinition()
Get the "enabled" property definition.
|
static CryptPasswordStorageSchemeCfgDefn |
getInstance()
Get the Crypt Password Storage Scheme configuration definition
singleton.
|
ClassPropertyDefinition |
getJavaClassPropertyDefinition()
Get the "java-class" property definition.
|
Class<CryptPasswordStorageSchemeCfg> |
getServerConfigurationClass()
Gets the server configuration class instance associated with this
managed object definition.
|
getAggregationPropertyDefinition, getAggregationPropertyDefinitions, getAllAggregationPropertyDefinitions, getAllChildren, getAllConstraints, getAllPropertyDefinitions, getAllRelationDefinitions, getAllReverseAggregationPropertyDefinitions, getAllReverseRelationDefinitions, getAllTags, getChild, getChildren, getConstraints, getDescription, getDescription, getName, getParent, getPropertyDefinition, getPropertyDefinitions, getRelationDefinition, getRelationDefinitions, getReverseAggregationPropertyDefinitions, getReverseRelationDefinitions, getSynopsis, getSynopsis, getUserFriendlyName, getUserFriendlyName, getUserFriendlyPluralName, getUserFriendlyPluralName, hasChildren, hasOption, hasTag, initialize, isChildOf, isParentOf, isTop, registerConstraint, registerOption, registerPropertyDefinition, registerRelationDefinition, registerTag, resolveManagedObjectDefinition, toString, toString
public static CryptPasswordStorageSchemeCfgDefn getInstance()
public CryptPasswordStorageSchemeCfgClient createClientConfiguration(ManagedObject<? extends CryptPasswordStorageSchemeCfgClient> impl)
createClientConfiguration
in class ManagedObjectDefinition<CryptPasswordStorageSchemeCfgClient,CryptPasswordStorageSchemeCfg>
impl
- The managed object.public CryptPasswordStorageSchemeCfg createServerConfiguration(ServerManagedObject<? extends CryptPasswordStorageSchemeCfg> impl)
createServerConfiguration
in class ManagedObjectDefinition<CryptPasswordStorageSchemeCfgClient,CryptPasswordStorageSchemeCfg>
impl
- The server managed object.public Class<CryptPasswordStorageSchemeCfg> getServerConfigurationClass()
getServerConfigurationClass
in class ManagedObjectDefinition<CryptPasswordStorageSchemeCfgClient,CryptPasswordStorageSchemeCfg>
public EnumPropertyDefinition<CryptPasswordStorageSchemeCfgDefn.CryptPasswordStorageEncryptionAlgorithm> getCryptPasswordStorageEncryptionAlgorithmPropertyDefinition()
Specifies the algorithm to use to encrypt new passwords.
Select the crypt algorithm to use to encrypt new passwords. The value can either be "unix", which means the password is encrypted with the weak Unix crypt algorithm, or "md5" which means the password is encrypted with the BSD MD5 algorithm and has a $1$ prefix, or "sha256" which means the password is encrypted with the SHA256 algorithm and has a $5$ prefix, or "sha512" which means the password is encrypted with the SHA512 algorithm and has a $6$ prefix.
public BooleanPropertyDefinition getEnabledPropertyDefinition()
Indicates whether the Crypt Password Storage Scheme is enabled for use.
public ClassPropertyDefinition getJavaClassPropertyDefinition()
Specifies the fully-qualified name of the Java class that provides the Crypt Password Storage Scheme implementation.
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.