android.device
Interface SEManager.PedInputListener

All Known Subinterfaces:
SEManager.OperationPedInputListener
Enclosing class:
SEManager

public static interface SEManager.PedInputListener


Method Summary
 void onChanged(int result, int keyLen, byte[] key)
To begin a PIN input session, call getPinBlock. Your registered PedInputListener will be called when a successful PIN input occurs or if the configured timeout expires, etc..
 

Method Detail

onChanged

void onChanged(int result,
               int keyLen,
               byte[] key)
To begin a PIN input session, call getPinBlock. Your registered PedInputListener will be called when a successful PIN input occurs or if the configured timeout expires, etc.

Parameters:
result - Value:
          (-1) : failed or timed out;
          0 : enter PIN to complete;
          1 : cancel input the PIN;
          2 : PIN input;
keyLen - PIN length has been entered.
key - Output data, the Pin Block data.
Returns:
none