Class CredentialsPresentation
java.lang.Object
com.pingidentity.sdk.pingonewallet.types.CredentialsPresentation
The CredentialsPresentation class represents the response to a PresentationRequest. It contains the claims matching the filtering criteria and picked by the user if more than one claim matches the criteria.
-
Constructor Summary
ConstructorsConstructorDescriptionCredentialsPresentation
(PresentationRequest presentationRequest) Initialize the result object for a PresentationRequestCredentialsPresentation
(PresentationRequest presentationRequest, List<com.pingidentity.did.sdk.types.Share> shares, Map<com.pingidentity.did.sdk.w3c.verifiableCredential.InputDescriptor, com.pingidentity.did.sdk.types.VerifiableCredential> verifiablePresentation) -
Method Summary
Modifier and TypeMethodDescriptionaddClaimForKeys
(List<String> keys, com.pingidentity.did.sdk.types.Claim claim) Add credential to the result for the matching key from the criteria in the presentation requestIdentifier for the wallet that received the PresentationRequestReturns PresentationRequest associated with the result objectList<com.pingidentity.did.sdk.types.Share>
Map<com.pingidentity.did.sdk.w3c.verifiableCredential.InputDescriptor,
com.pingidentity.did.sdk.types.VerifiableCredential> boolean
isEmpty()
If presentation result is empty
-
Constructor Details
-
CredentialsPresentation
Initialize the result object for a PresentationRequest- Parameters:
presentationRequest
- : PresentationRequest received in WalletCallbackHandler.handleCredentialRequest
-
CredentialsPresentation
public CredentialsPresentation(PresentationRequest presentationRequest, List<com.pingidentity.did.sdk.types.Share> shares, Map<com.pingidentity.did.sdk.w3c.verifiableCredential.InputDescriptor, com.pingidentity.did.sdk.types.VerifiableCredential> verifiablePresentation)
-
-
Method Details
-
getPresentationRequest
Returns PresentationRequest associated with the result object- Returns:
- PresentationRequest
-
isEmpty
public boolean isEmpty()If presentation result is empty- Returns:
- boolean indicating if result has any credentials
-
getVerifiablePresentation
@Nullable public Map<com.pingidentity.did.sdk.w3c.verifiableCredential.InputDescriptor,com.pingidentity.did.sdk.types.VerifiableCredential> getVerifiablePresentation() -
getApplicationInstanceId
Identifier for the wallet that received the PresentationRequest- Returns:
- ID for the registered wallet
-
addClaimForKeys
public CredentialsPresentation addClaimForKeys(@NonNull List<String> keys, @NonNull com.pingidentity.did.sdk.types.Claim claim) Add credential to the result for the matching key from the criteria in the presentation request- Parameters:
keys
- String keys from criteria in presentation requestclaim
- Matching Claim- Returns:
- CredentialPresentation
-