public interface

DocumentSigningListener

com.pspdfkit.listeners.DocumentSigningListener

Class Overview

Listener for digital signing events when using the SignatureSignerDialog.

Summary

Public Methods
abstract void onDocumentSigned(Uri signedDocumentUri)
Called when document is signed with temporary PDF URI.
abstract void onDocumentSigningError(Throwable error)
Called when there was an error while signing.
abstract void onSigningCancelled()
Called when the user dismissed the dialog without signing the document.

Public Methods

public abstract void onDocumentSigned (Uri signedDocumentUri)

Called when document is signed with temporary PDF URI. Use this to persistently store the document somewhere safe or to display it.

Parameters
signedDocumentUri Uri pointing to the signed PDF document in a temporary location.

public abstract void onDocumentSigningError (Throwable error)

Called when there was an error while signing.

Parameters
error An exception with more information on the error, or null if no details are available.

public abstract void onSigningCancelled ()

Called when the user dismissed the dialog without signing the document.