You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/src/main/java/com/cloud/user/PasswordPolicy.java
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,8 @@ public interface PasswordPolicy {
25
25
Integer.class,
26
26
"password.policy.minimum.special.characters",
27
27
"0",
28
-
"Minimum number of special characters that the user's password must have. The value 0 means the user's password does not require any special characters.",
28
+
"Minimum number of special characters that the user's password must have. Any character that is neither a letter nor numeric is considered special. " +
29
+
"The value 0 means the user's password does not require any special characters.",
29
30
true,
30
31
ConfigKey.Scope.Domain);
31
32
@@ -43,7 +44,7 @@ public interface PasswordPolicy {
43
44
Integer.class,
44
45
"password.policy.minimum.uppercase.letters",
45
46
"0",
46
-
"Minimum number of uppercase letters that the user's password must have. The value 0 means the user's password does not require any uppercase letters.",
47
+
"Minimum number of uppercase letters [A-Z] that the user's password must have. The value 0 means the user's password does not require any uppercase letters.",
47
48
true,
48
49
ConfigKey.Scope.Domain);
49
50
@@ -52,7 +53,7 @@ public interface PasswordPolicy {
52
53
Integer.class,
53
54
"password.policy.minimum.lowercase.letters",
54
55
"0",
55
-
"Minimum number of lowercase letters that the user's password must have. The value 0 means the user's password does not require any lowercase letters.",
56
+
"Minimum number of lowercase letters [a-z] that the user's password must have. The value 0 means the user's password does not require any lowercase letters.",
56
57
true,
57
58
ConfigKey.Scope.Domain);
58
59
@@ -61,7 +62,7 @@ public interface PasswordPolicy {
61
62
Integer.class,
62
63
"password.policy.minimum.digits",
63
64
"0",
64
-
"Minimum number of digits that the user's password must have. The value 0 means the user's password does not require any digits.",
65
+
"Minimum number of numeric characters [0-9] that the user's password must have. The value 0 means the user's password does not require any numeric characters.",
0 commit comments