Interface WalletCallbackHandler


public interface WalletCallbackHandler
Interface for handling Credential issuance, revocation, requests, errors and events.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    handleCredentialIssuance(String issuer, String message, com.pingidentity.did.sdk.client.service.model.Challenge challenge, com.pingidentity.did.sdk.types.Claim claim, List<com.pingidentity.sdk.pingonewallet.errors.WalletException> errors)
    Handle the newly issued credential.
    void
    handleCredentialPresentation(String sender, String message, com.pingidentity.did.sdk.client.service.model.Challenge challenge, List<com.pingidentity.did.sdk.types.Share> claim, List<com.pingidentity.sdk.pingonewallet.errors.WalletException> errors)
    This callback is triggered when another wallet shares a credential with the current application instance.
    void
    This callback is triggered when PingOneWalletClientContract.processQrContent is called and the URL represents a Verifiable Presentation request.
    boolean
    handleCredentialRevocation(String issuer, String message, com.pingidentity.did.sdk.client.service.model.Challenge challenge, com.pingidentity.did.sdk.types.ClaimReference claimReference, List<com.pingidentity.sdk.pingonewallet.errors.WalletException> errors)
    Handle the revocation of a credential.
    void
    handleError(com.pingidentity.sdk.pingonewallet.errors.WalletException error)
    This callback is triggered when the SDK runs into any errors while processing the events/messages.
    void
    Callback returns different events while using Wallet, including errors Call super.handleEvent() if you're still using `handleError` callback to manage exceptions.
  • Method Details

    • handleCredentialIssuance

      boolean handleCredentialIssuance(String issuer, String message, com.pingidentity.did.sdk.client.service.model.Challenge challenge, com.pingidentity.did.sdk.types.Claim claim, List<com.pingidentity.sdk.pingonewallet.errors.WalletException> errors)
      Handle the newly issued credential.
      Parameters:
      issuer - ApplicationInstanceID of the credential issuer
      message - Optional string message
      challenge - Optional challenge
      claim - Issued credential
      errors - List of any errors while processing/verifying the credential
      Returns:
      True if you'd like to accept the credential False if you'd like to reject the credential
    • handleCredentialRevocation

      boolean handleCredentialRevocation(String issuer, String message, com.pingidentity.did.sdk.client.service.model.Challenge challenge, com.pingidentity.did.sdk.types.ClaimReference claimReference, List<com.pingidentity.sdk.pingonewallet.errors.WalletException> errors)
      Handle the revocation of a credential.
      Parameters:
      issuer - ApplicationInstanceID of the credential issuer
      message - Optional string message
      challenge - Optional challenge
      claimReference - ClaimReference for the revoked credential
      errors - List of any errors that occurred while revoking the credential
      Returns:
      True if you'd like to revoke the credential, false if you would like to reject the revocation
    • handleCredentialPresentation

      void handleCredentialPresentation(String sender, String message, com.pingidentity.did.sdk.client.service.model.Challenge challenge, List<com.pingidentity.did.sdk.types.Share> claim, List<com.pingidentity.sdk.pingonewallet.errors.WalletException> errors)
      This callback is triggered when another wallet shares a credential with the current application instance.
      Parameters:
      sender - ApplicationInstanceID of the sender
      message - Optional string message
      challenge - Optional challenge
      claim - Shared credential
      errors - List of any errors that occurred while sharing the credential
    • handleCredentialRequest

      void handleCredentialRequest(PresentationRequest presentationRequest)
      This callback is triggered when PingOneWalletClientContract.processQrContent is called and the URL represents a Verifiable Presentation request.
      Parameters:
      presentationRequest - Request for presenting Claims from wallet
    • handleError

      void handleError(com.pingidentity.sdk.pingonewallet.errors.WalletException error)
      This callback is triggered when the SDK runs into any errors while processing the events/messages.
      Parameters:
      error - This method is deprecated and will be removed in upcoming updates. Use handleEvent instead
    • handleEvent

      void handleEvent(WalletEvent event)
      Callback returns different events while using Wallet, including errors Call super.handleEvent() if you're still using `handleError` callback to manage exceptions.
      Parameters:
      event - WalletEvent