Package org.dogtagpki.tps.apdu
Enum ExternalAuthenticateAPDUGP211.SecurityLevel
- java.lang.Object
-
- java.lang.Enum<ExternalAuthenticateAPDUGP211.SecurityLevel>
-
- org.dogtagpki.tps.apdu.ExternalAuthenticateAPDUGP211.SecurityLevel
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ExternalAuthenticateAPDUGP211.SecurityLevel>
- Enclosing class:
- ExternalAuthenticateAPDUGP211
public static enum ExternalAuthenticateAPDUGP211.SecurityLevel extends java.lang.Enum<ExternalAuthenticateAPDUGP211.SecurityLevel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CDEC_CMAC
CDEC_CMAC_RMAC
CMAC
CMAC_RMAC
RMAC
SECURE_MSG_NONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExternalAuthenticateAPDUGP211.SecurityLevel
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExternalAuthenticateAPDUGP211.SecurityLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SECURE_MSG_NONE
public static final ExternalAuthenticateAPDUGP211.SecurityLevel SECURE_MSG_NONE
-
CMAC
public static final ExternalAuthenticateAPDUGP211.SecurityLevel CMAC
-
CDEC_CMAC
public static final ExternalAuthenticateAPDUGP211.SecurityLevel CDEC_CMAC
-
RMAC
public static final ExternalAuthenticateAPDUGP211.SecurityLevel RMAC
-
CMAC_RMAC
public static final ExternalAuthenticateAPDUGP211.SecurityLevel CMAC_RMAC
-
CDEC_CMAC_RMAC
public static final ExternalAuthenticateAPDUGP211.SecurityLevel CDEC_CMAC_RMAC
-
-
Method Detail
-
values
public static ExternalAuthenticateAPDUGP211.SecurityLevel[] 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 (ExternalAuthenticateAPDUGP211.SecurityLevel c : ExternalAuthenticateAPDUGP211.SecurityLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExternalAuthenticateAPDUGP211.SecurityLevel 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
-
-