Interface PasswordEnrollmentHandler

All Superinterfaces:
CancelableHandler

public interface PasswordEnrollmentHandler extends CancelableHandler
The object handling the password to be enrolled.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method must be invoked if the operation must be canceled.
    void
    password(char[] password)
    Specify the password to be enrolled.
  • Method Details

    • cancel

      void cancel()
      This method must be invoked if the operation must be canceled.
      Specified by:
      cancel in interface CancelableHandler
      Throws:
      IllegalStateException - if either this method or password(char[]) were previously invoked
    • password

      void password(char[] password)
      Specify the password to be enrolled. When this method is invoked, the SDK will validate the password and, if valid, will enroll it.
      Parameters:
      password - the password
      Throws:
      IllegalStateException - if either cancel() or this method were previously invoked