1 package android.nfc;
2 
3 import android.nfc.Tag;
4 
5 /**
6  * @hide
7  */
8 interface INfcUnlockHandler {
9 
onUnlockAttempted(in Tag tag)10     boolean onUnlockAttempted(in Tag tag);
11 
12 }
13