Class QESEvidence
- java.lang.Object
-
- com.nimbusds.openid.connect.sdk.assurance.evidences.IdentityEvidence
-
- com.nimbusds.openid.connect.sdk.assurance.evidences.QESEvidence
-
- All Implemented Interfaces:
net.minidev.json.JSONAware
@Deprecated public class QESEvidence extends IdentityEvidence
Deprecated.UseElectronicSignatureEvidenceinstead.Qualified electronic signature (QES) used as identity evidence.Related specifications:
- OpenID Connect for Identity Assurance 1.0, section 5.1.1.5.
-
-
Constructor Summary
Constructors Constructor Description QESEvidence(Issuer issuer, String serialNumber, DateWithTimeZoneOffset createdAt)Deprecated.Creates a new QES used as identity evidence.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object o)Deprecated.DateWithTimeZoneOffsetgetQESCreationTime()Deprecated.Returns The QES creation time.IssuergetQESIssuer()Deprecated.Returns the QES issuer.StringgetQESSerialNumberString()Deprecated.Returns the QES serial number.inthashCode()Deprecated.static QESEvidenceparse(net.minidev.json.JSONObject jsonObject)Deprecated.Parses a new QES evidence from the specified JSON object.net.minidev.json.JSONObjecttoJSONObject()Deprecated.Returns a JSON object representation of this evidence.-
Methods inherited from class com.nimbusds.openid.connect.sdk.assurance.evidences.IdentityEvidence
ensureType, getAttachments, getEvidenceType, toDocumentEvidence, toElectronicRecordEvidence, toElectronicSignatureEvidence, toIDDocumentEvidence, toJSONString, toQESEvidence, toUtilityBillEvidence, toVouchEvidence
-
-
-
-
Constructor Detail
-
QESEvidence
public QESEvidence(Issuer issuer, String serialNumber, DateWithTimeZoneOffset createdAt)
Deprecated.Creates a new QES used as identity evidence.- Parameters:
issuer- The QES issuer,nullif not specified.serialNumber- The QES serial number,nullif not specified.createdAt- The QES creation time,nullif not specified.
-
-
Method Detail
-
getQESIssuer
public Issuer getQESIssuer()
Deprecated.Returns the QES issuer.- Returns:
- The QES issuer,
nullif not specified.
-
getQESSerialNumberString
public String getQESSerialNumberString()
Deprecated.Returns the QES serial number.- Returns:
- The QES serial number string,
nullif not specified.
-
getQESCreationTime
public DateWithTimeZoneOffset getQESCreationTime()
Deprecated.Returns The QES creation time.- Returns:
- The QES creation time,
nullif not specified.
-
toJSONObject
public net.minidev.json.JSONObject toJSONObject()
Deprecated.Description copied from class:IdentityEvidenceReturns a JSON object representation of this evidence.- Overrides:
toJSONObjectin classIdentityEvidence- Returns:
- The JSON object.
-
parse
public static QESEvidence parse(net.minidev.json.JSONObject jsonObject) throws ParseException
Deprecated.Parses a new QES evidence from the specified JSON object.- Parameters:
jsonObject- The JSON object. Must not benull.- Returns:
- The QES evidence.
- Throws:
ParseException- If parsing failed.
-
-