Class IdentityVerificationMethod
- java.lang.Object
-
- com.nimbusds.oauth2.sdk.id.Identifier
-
- com.nimbusds.openid.connect.sdk.assurance.evidences.IdentityVerificationMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<Identifier>
,net.minidev.json.JSONAware
@Immutable public final class IdentityVerificationMethod extends Identifier
Identity verification method.- OpenID Connect for Identity Assurance 1.0, section 4.1.1.1.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static IdentityVerificationMethod
EID
Online verification of an electronic ID card.static IdentityVerificationMethod
PIPP
Physical In-Person Proofing.static IdentityVerificationMethod
SRIPP
Supervised remote In-Person Proofing.static IdentityVerificationMethod
URIPP
Unsupervised remote in-person proofing with video capture of the ID document, user self-portrait video and liveness checks.-
Fields inherited from class com.nimbusds.oauth2.sdk.id.Identifier
DEFAULT_BYTE_LENGTH, secureRandom
-
-
Constructor Summary
Constructors Constructor Description IdentityVerificationMethod(String value)
Creates a new identity verification method.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
-
Methods inherited from class com.nimbusds.oauth2.sdk.id.Identifier
compareTo, getValue, hashCode, toJSONString, toString, toStringList
-
-
-
-
Field Detail
-
PIPP
public static final IdentityVerificationMethod PIPP
Physical In-Person Proofing.
-
SRIPP
public static final IdentityVerificationMethod SRIPP
Supervised remote In-Person Proofing.
-
EID
public static final IdentityVerificationMethod EID
Online verification of an electronic ID card.
-
URIPP
public static final IdentityVerificationMethod URIPP
Unsupervised remote in-person proofing with video capture of the ID document, user self-portrait video and liveness checks.
-
-
Constructor Detail
-
IdentityVerificationMethod
public IdentityVerificationMethod(String value)
Creates a new identity verification method.- Parameters:
value
- The verification method value. Must not benull
.
-
-
Method Detail
-
equals
public boolean equals(Object object)
- Overrides:
equals
in classIdentifier
-
-