public final class LengthBasedPasswordValidatorCfgDefn extends ManagedObjectDefinition<LengthBasedPasswordValidatorCfgClient,LengthBasedPasswordValidatorCfg>
The Length Based Password Validator is used to determine whether a proposed password is acceptable based on whether the number of characters it contains falls within an acceptable range of values.
Modifier and Type | Method and Description |
---|---|
LengthBasedPasswordValidatorCfgClient |
createClientConfiguration(ManagedObject<? extends LengthBasedPasswordValidatorCfgClient> impl)
Creates a client configuration view of the provided managed
object.
|
LengthBasedPasswordValidatorCfg |
createServerConfiguration(ServerManagedObject<? extends LengthBasedPasswordValidatorCfg> impl)
Creates a server configuration view of the provided server
managed object.
|
BooleanPropertyDefinition |
getEnabledPropertyDefinition()
Get the "enabled" property definition.
|
static LengthBasedPasswordValidatorCfgDefn |
getInstance()
Get the Length Based Password Validator configuration definition
singleton.
|
ClassPropertyDefinition |
getJavaClassPropertyDefinition()
Get the "java-class" property definition.
|
IntegerPropertyDefinition |
getMaxPasswordLengthPropertyDefinition()
Get the "max-password-length" property definition.
|
IntegerPropertyDefinition |
getMinPasswordLengthPropertyDefinition()
Get the "min-password-length" property definition.
|
Class<LengthBasedPasswordValidatorCfg> |
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 LengthBasedPasswordValidatorCfgDefn getInstance()
public LengthBasedPasswordValidatorCfgClient createClientConfiguration(ManagedObject<? extends LengthBasedPasswordValidatorCfgClient> impl)
createClientConfiguration
in class ManagedObjectDefinition<LengthBasedPasswordValidatorCfgClient,LengthBasedPasswordValidatorCfg>
impl
- The managed object.public LengthBasedPasswordValidatorCfg createServerConfiguration(ServerManagedObject<? extends LengthBasedPasswordValidatorCfg> impl)
createServerConfiguration
in class ManagedObjectDefinition<LengthBasedPasswordValidatorCfgClient,LengthBasedPasswordValidatorCfg>
impl
- The server managed object.public Class<LengthBasedPasswordValidatorCfg> getServerConfigurationClass()
getServerConfigurationClass
in class ManagedObjectDefinition<LengthBasedPasswordValidatorCfgClient,LengthBasedPasswordValidatorCfg>
public BooleanPropertyDefinition getEnabledPropertyDefinition()
Indicates whether the password validator is enabled for use.
public ClassPropertyDefinition getJavaClassPropertyDefinition()
Specifies the fully-qualified name of the Java class that provides the password validator implementation.
public IntegerPropertyDefinition getMaxPasswordLengthPropertyDefinition()
Specifies the maximum number of characters that can be included in a proposed password.
A value of zero indicates that there will be no upper bound enforced. If both minimum and maximum lengths are defined, then the minimum length must be less than or equal to the maximum length.
public IntegerPropertyDefinition getMinPasswordLengthPropertyDefinition()
Specifies the minimum number of characters that must be included in a proposed password.
A value of zero indicates that there will be no lower bound enforced. If both minimum and maximum lengths are defined, then the minimum length must be less than or equal to the maximum length.
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.