1 package android.service.remotelockscreenvalidation; 2 3 import android.app.RemoteLockscreenValidationResult; 4 import android.service.remotelockscreenvalidation.IRemoteLockscreenValidationCallback; 5 6 /** 7 * Interface used by the System to validate remote device lockscreen. 8 * {@hide} 9 */ 10 interface IRemoteLockscreenValidationService { validateLockscreenGuess(in byte[] guess, in IRemoteLockscreenValidationCallback callback)11 void validateLockscreenGuess(in byte[] guess, in IRemoteLockscreenValidationCallback callback); 12 } 13