Package com.appliedrec.verid.core2.auth
Enum LicenceAuthenticationException.Code
- java.lang.Object
-
- java.lang.Enum<LicenceAuthenticationException.Code>
-
- com.appliedrec.verid.core2.auth.LicenceAuthenticationException.Code
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LicenceAuthenticationException.Code>
- Enclosing class:
- LicenceAuthenticationException
public static enum LicenceAuthenticationException.Code extends java.lang.Enum<LicenceAuthenticationException.Code>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CERTIFICATE_ERROR
CERTIFICATE_FINGERPRINT_ERROR
CONTEXT_UNAVAILABLE
INVALID_CERTIFICATE_AUTHORITY
INVALID_PACKAGE_NAME
IO_ERROR
UNACCEPTABLE_CLIENT_CERTIFICATE_ISSUER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LicenceAuthenticationException.Code
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LicenceAuthenticationException.Code[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CERTIFICATE_ERROR
public static final LicenceAuthenticationException.Code CERTIFICATE_ERROR
-
INVALID_CERTIFICATE_AUTHORITY
public static final LicenceAuthenticationException.Code INVALID_CERTIFICATE_AUTHORITY
-
CONTEXT_UNAVAILABLE
public static final LicenceAuthenticationException.Code CONTEXT_UNAVAILABLE
-
INVALID_PACKAGE_NAME
public static final LicenceAuthenticationException.Code INVALID_PACKAGE_NAME
-
CERTIFICATE_FINGERPRINT_ERROR
public static final LicenceAuthenticationException.Code CERTIFICATE_FINGERPRINT_ERROR
-
IO_ERROR
public static final LicenceAuthenticationException.Code IO_ERROR
-
UNACCEPTABLE_CLIENT_CERTIFICATE_ISSUER
public static final LicenceAuthenticationException.Code UNACCEPTABLE_CLIENT_CERTIFICATE_ISSUER
-
-
Method Detail
-
values
public static LicenceAuthenticationException.Code[] 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 (LicenceAuthenticationException.Code c : LicenceAuthenticationException.Code.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LicenceAuthenticationException.Code 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
-
-