다음을 통해 공유


DevicePolicyManager.PasswordComplexityLow Field

Definition

Caution

This constant will be removed in the future version. Use Android.App.Admin.PasswordComplexity enum directly instead of this field.

Constant for #getPasswordComplexity() and #setRequiredPasswordComplexity(int).

[Android.Runtime.Register("PASSWORD_COMPLEXITY_LOW", ApiSince=29)]
[System.Obsolete("This constant will be removed in the future version. Use Android.App.Admin.PasswordComplexity enum directly instead of this field.", true)]
public const Android.App.Admin.PasswordComplexity PasswordComplexityLow = 65536;
[<Android.Runtime.Register("PASSWORD_COMPLEXITY_LOW", ApiSince=29)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.App.Admin.PasswordComplexity enum directly instead of this field.", true)>]
val mutable PasswordComplexityLow : Android.App.Admin.PasswordComplexity

Field Value

Value = 65536
Attributes

Remarks

Constant for #getPasswordComplexity() and #setRequiredPasswordComplexity(int). Define the low password complexity band as: <ul> <li>pattern <li>PIN with repeating (4444) or ordered (1234, 4321, 2468) sequences </ul>

When returned from #getPasswordComplexity(), the constant represents the exact complexity band the password is in. When passed to #setRequiredPasswordComplexity(int), it sets the minimum complexity band which the password must meet.

@see #PASSWORD_QUALITY_SOMETHING @see #PASSWORD_QUALITY_NUMERIC

Java documentation for android.app.admin.DevicePolicyManager.PASSWORD_COMPLEXITY_LOW.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to