Interface PinChangeHandler
- All Superinterfaces:
CancelableHandler
The object handling the old and new PIN provided by the end-user.
-
Method Summary
-
Method Details
-
cancel
void cancel()This method must be invoked if the operation must be canceled.- Specified by:
cancel
in interfaceCancelableHandler
- Throws:
IllegalStateException
- if either this method orpins(char[], char[])
were previously invoked
-
pins
void pins(char[] oldPin, char[] newPin) Specify the old PIN and the new PIN. To change a PIN, the SDK requires to provide the old PIN. When this method is invoked, the SDK will validate the provided PINs.- Parameters:
oldPin
- the old PINnewPin
- the new PIN- Throws:
IllegalStateException
- if eithercancel()
or this method were previously invoked
-