public static final enum

InteractiveSigner.LoadingFeedbackListener.InteractionRequiredEvent

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pspdfkit.signatures.signers.InteractiveSigner.LoadingFeedbackListener.InteractionRequiredEvent

Class Overview

Possible user interaction events that can be emitted via onInteractionRequired(InteractiveSigner.LoadingFeedbackListener.InteractionRequiredEvent).

Summary

Enum Values
InteractiveSigner.LoadingFeedbackListener.InteractionRequiredEvent  PASSWORD_INVALID  The provided password was invalid. 
InteractiveSigner.LoadingFeedbackListener.InteractionRequiredEvent  PASSWORD_MISSING  No password was provided and the user is required to provide a password to load the private key. 
Public Methods
static InteractiveSigner.LoadingFeedbackListener.InteractionRequiredEvent valueOf(String name)
final static InteractionRequiredEvent[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final InteractiveSigner.LoadingFeedbackListener.InteractionRequiredEvent PASSWORD_INVALID

The provided password was invalid. The user is required to provide a different password to load the private key. If this event is emitted, the application should ask the user for the password and provide it to the signer using unlockPrivateKeyWithPassword(String).

public static final InteractiveSigner.LoadingFeedbackListener.InteractionRequiredEvent PASSWORD_MISSING

No password was provided and the user is required to provide a password to load the private key. If this event is emitted, the application should ask the user for the password and provide it to the signer using unlockPrivateKeyWithPassword(String).

Public Methods

public static final InteractionRequiredEvent[] values ()