Package org.alfresco.utility.data.auth
Enum DataKerberos.UserAccountStatus
- java.lang.Object
-
- java.lang.Enum<DataKerberos.UserAccountStatus>
-
- org.alfresco.utility.data.auth.DataKerberos.UserAccountStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DataKerberos.UserAccountStatus>
- Enclosing class:
- DataKerberos
public static enum DataKerberos.UserAccountStatus extends java.lang.Enum<DataKerberos.UserAccountStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISABLE_ACCOUNTDONT_EXPIRE_PASSWDDONT_REQ_PREAUTHNORMAL_ACCOUNTPASSWD_NOTREQDTRUSTED_FOR_DELEGATIONTRUSTED_TO_AUTH_FOR_DELEGATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static DataKerberos.UserAccountStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DataKerberos.UserAccountStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL_ACCOUNT
public static final DataKerberos.UserAccountStatus NORMAL_ACCOUNT
-
PASSWD_NOTREQD
public static final DataKerberos.UserAccountStatus PASSWD_NOTREQD
-
DONT_REQ_PREAUTH
public static final DataKerberos.UserAccountStatus DONT_REQ_PREAUTH
-
TRUSTED_TO_AUTH_FOR_DELEGATION
public static final DataKerberos.UserAccountStatus TRUSTED_TO_AUTH_FOR_DELEGATION
-
TRUSTED_FOR_DELEGATION
public static final DataKerberos.UserAccountStatus TRUSTED_FOR_DELEGATION
-
DISABLE_ACCOUNT
public static final DataKerberos.UserAccountStatus DISABLE_ACCOUNT
-
DONT_EXPIRE_PASSWD
public static final DataKerberos.UserAccountStatus DONT_EXPIRE_PASSWD
-
-
Method Detail
-
values
public static DataKerberos.UserAccountStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DataKerberos.UserAccountStatus c : DataKerberos.UserAccountStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataKerberos.UserAccountStatus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public int getValue()
-
-