From 952ce880317825f16c256fb716167eb7fddeda49 Mon Sep 17 00:00:00 2001
From: rhaggard <rhaggard@localhost>
Date: Wed, 06 Feb 2008 18:09:50 +0000
Subject: [PATCH] Commiting configuration XML files after adding info from the old config guide to be incorporated in the new generated config reference
---
opends/src/admin/defn/org/opends/server/admin/std/LengthBasedPasswordValidatorConfiguration.xml | 29 +++++++++++++++++++----------
1 files changed, 19 insertions(+), 10 deletions(-)
diff --git a/opends/src/admin/defn/org/opends/server/admin/std/LengthBasedPasswordValidatorConfiguration.xml b/opends/src/admin/defn/org/opends/server/admin/std/LengthBasedPasswordValidatorConfiguration.xml
index f91306b..9a5b8f5 100644
--- a/opends/src/admin/defn/org/opends/server/admin/std/LengthBasedPasswordValidatorConfiguration.xml
+++ b/opends/src/admin/defn/org/opends/server/admin/std/LengthBasedPasswordValidatorConfiguration.xml
@@ -23,7 +23,7 @@
! CDDL HEADER END
!
!
- ! Portions Copyright 2007 Sun Microsystems, Inc.
+ ! Portions Copyright 2007-2008 Sun Microsystems, Inc.
! -->
<adm:managed-object name="length-based-password-validator"
plural-name="length-based-password-validators"
@@ -39,8 +39,12 @@
<adm:user-friendly-name />
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.
+ acceptable range of values.
</adm:synopsis>
+ <adm:description>
+ Both upper and lower bounds may be
+ defined.
+ </adm:description>
<adm:profile name="ldap">
<ldap:object-class>
<ldap:name>ds-cfg-length-based-password-validator</ldap:name>
@@ -58,12 +62,14 @@
</adm:property-override>
<adm:property name="max-password-length">
<adm:synopsis>
- Specifies the maximum number of characters that may be included in
- a proposed password.
+ Specifies the maximum number of characters that can be included in
+ a proposed password.
</adm:synopsis>
<adm:description>
A value of zero indicates that there will be no upper bound
- enforced.
+ enforced. If both minimum and maximum lengths
+ are defined, then the minimum length must be less than or equal to
+ the maximum length.
</adm:description>
<adm:default-behavior>
<adm:defined>
@@ -71,7 +77,7 @@
</adm:defined>
</adm:default-behavior>
<adm:syntax>
- <adm:integer lower-limit="0" />
+ <adm:integer lower-limit="0" upper-limit="2147483647"/>
</adm:syntax>
<adm:profile name="ldap">
<ldap:attribute>
@@ -82,19 +88,22 @@
<adm:property name="min-password-length">
<adm:synopsis>
Specifies the minimum number of characters that must be included
- in a proposed password.
+ in a proposed password.
</adm:synopsis>
<adm:description>
A value of zero indicates that there will be no lower bound
- enforced.
+ enforced.
+ If both minimum and maximum lengths
+ are defined, then the minimum length must be less than or equal to
+ the maximum length.
</adm:description>
<adm:default-behavior>
<adm:defined>
- <adm:value>1</adm:value>
+ <adm:value>6</adm:value>
</adm:defined>
</adm:default-behavior>
<adm:syntax>
- <adm:integer lower-limit="0" />
+ <adm:integer lower-limit="0" upper-limit="2147483647"/>
</adm:syntax>
<adm:profile name="ldap">
<ldap:attribute>
--
Gitblit v1.10.0