Interface PinEnrollmentHandler

All Superinterfaces:
CancelableHandler

public interface PinEnrollmentHandler extends CancelableHandler
The object handling the PIN 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
    pin(char[] pin)
    Specify the PIN 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 pin(char[]) were previously invoked
    • pin

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