AttestationDataInterpretation Class

public final class AttestationDataInterpretation
extends ExpandableStringEnum<AttestationDataInterpretation>

Defines values for AttestationDataInterpretation.

Field Summary

Modifier and Type Field and Description
static final AttestationDataInterpretation BINARY

Static value BINARY for AttestationDataInterpretation.

static final AttestationDataInterpretation JSON

Static value JSON for AttestationDataInterpretation.

Constructor Summary

Constructor Description
AttestationDataInterpretation()

Method Summary

Modifier and Type Method and Description
static AttestationDataInterpretation fromString(String name)

Creates or finds a AttestationType from its string representation.

static Collection<AttestationDataInterpretation> values()

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

BINARY

public static final AttestationDataInterpretation BINARY

Static value BINARY for AttestationDataInterpretation.

When the attestation service receives the Data, it should interpret the data as binary, and return the data in the getEnclaveHeldData() property.

JSON

public static final AttestationDataInterpretation JSON

Static value JSON for AttestationDataInterpretation.

When the attestation service receives the RunTime Data, it should interpret the data as binary, and return the data in the getRuntimeClaims() property

Constructor Details

AttestationDataInterpretation

public AttestationDataInterpretation()

Method Details

fromString

public static AttestationDataInterpretation fromString(String name)

Creates or finds a AttestationType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding AttestationType.

values

public static Collection values()

Returns:

known AttestationType values.

Applies to