Package io.jans.fido2.model.mds
Enum AuthenticatorCertificationStatus
- java.lang.Object
-
- java.lang.Enum<AuthenticatorCertificationStatus>
-
- io.jans.fido2.model.mds.AuthenticatorCertificationStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<AuthenticatorCertificationStatus>
public enum AuthenticatorCertificationStatus extends Enum<AuthenticatorCertificationStatus>
This enumeration describes the status of an authenticator model as identified by its AAID and potentially some additional information (such as a specific attestation key). -https://fidoalliance.org/specs/fido-v2.0-rd-20180702/fido-metadata-service-v2.0-rd-20180702.html
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthenticatorCertificationStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static AuthenticatorCertificationStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_FIDO_CERTIFIED
public static final AuthenticatorCertificationStatus NOT_FIDO_CERTIFIED
-
FIDO_CERTIFIED
public static final AuthenticatorCertificationStatus FIDO_CERTIFIED
-
USER_VERIFICATION_BYPASS
public static final AuthenticatorCertificationStatus USER_VERIFICATION_BYPASS
-
ATTESTATION_KEY_COMPROMISE
public static final AuthenticatorCertificationStatus ATTESTATION_KEY_COMPROMISE
-
USER_KEY_REMOTE_COMPROMISE
public static final AuthenticatorCertificationStatus USER_KEY_REMOTE_COMPROMISE
-
USER_KEY_PHYSICAL_COMPROMISE
public static final AuthenticatorCertificationStatus USER_KEY_PHYSICAL_COMPROMISE
-
UPDATE_AVAILABLE
public static final AuthenticatorCertificationStatus UPDATE_AVAILABLE
-
REVOKED
public static final AuthenticatorCertificationStatus REVOKED
-
SELF_ASSERTION_SUBMITTED
public static final AuthenticatorCertificationStatus SELF_ASSERTION_SUBMITTED
-
FIDO_CERTIFIED_L1
public static final AuthenticatorCertificationStatus FIDO_CERTIFIED_L1
-
FIDO_CERTIFIED_L1plus
public static final AuthenticatorCertificationStatus FIDO_CERTIFIED_L1plus
-
FIDO_CERTIFIED_L2
public static final AuthenticatorCertificationStatus FIDO_CERTIFIED_L2
-
FIDO_CERTIFIED_L2plus
public static final AuthenticatorCertificationStatus FIDO_CERTIFIED_L2plus
-
FIDO_CERTIFIED_L3
public static final AuthenticatorCertificationStatus FIDO_CERTIFIED_L3
-
FIDO_CERTIFIED_L3plus
public static final AuthenticatorCertificationStatus FIDO_CERTIFIED_L3plus
-
-
Method Detail
-
values
public static AuthenticatorCertificationStatus[] 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 (AuthenticatorCertificationStatus c : AuthenticatorCertificationStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticatorCertificationStatus valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-