public enum AttestationConveyancePreference extends java.lang.Enum<AttestationConveyancePreference>
| Enum Constant and Description |
|---|
DIRECT
This value indicates that the Relying Party wants to receive the attestation statement as
generated by the authenticator.
|
INDIRECT
This value indicates that the Relying Party prefers an attestation conveyance yielding
verifiable attestation statements, but allows the client to decide how to obtain such
attestation statements.
|
NONE
This value indicates that the Relying Party is not interested in authenticator attestation.
|
| Modifier and Type | Method and Description |
|---|---|
static AttestationConveyancePreference |
create(java.lang.String value) |
java.lang.String |
getValue() |
static AttestationConveyancePreference |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttestationConveyancePreference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttestationConveyancePreference NONE
public static final AttestationConveyancePreference INDIRECT
public static final AttestationConveyancePreference DIRECT
public static AttestationConveyancePreference[] values()
for (AttestationConveyancePreference c : AttestationConveyancePreference.values()) System.out.println(c);
public static AttestationConveyancePreference valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static AttestationConveyancePreference create(java.lang.String value)
public java.lang.String getValue()