public interface

InteractiveSigner

com.pspdfkit.signatures.signers.InteractiveSigner
Known Indirect Subclasses

Class Overview

Interface of a Signer that requires user interaction during the signing process. Any Signer that implements this interface, can be used within the SignatureSignerDialog to request a password from the user.

Summary

Nested Classes
interface InteractiveSigner.LoadingFeedbackListener Callback for notifying the user of important events that could happen during private key loading. 
Public Methods
abstract void setLoadingFeedbackListener(InteractiveSigner.LoadingFeedbackListener listener)
Sets a listener for being notified of important events that require user interaction.
abstract void unlockPrivateKeyWithPassword(String password)
Can be used to provide a password to the signer, which might be used to unlock a private key (or similar).

Public Methods

public abstract void setLoadingFeedbackListener (InteractiveSigner.LoadingFeedbackListener listener)

Sets a listener for being notified of important events that require user interaction.

Parameters
listener A InteractiveSigner.LoadingFeedbackListener for receiving important events.

public abstract void unlockPrivateKeyWithPassword (String password)

Can be used to provide a password to the signer, which might be used to unlock a private key (or similar).

Parameters
password A password that should be used by the signer, or null if no password is required.