1 /** 2 * Copyright (c) 2022, The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.devicelockcontroller; 18 19 import android.os.RemoteCallback; 20 21 /** 22 * Binder interface to communicate with DeviceLockController. 23 * {@hide} 24 */ 25 oneway interface IDeviceLockControllerService { 26 const String KEY_LOCK_DEVICE_RESULT = "KEY_LOCK_DEVICE_RESULT"; lockDevice(in RemoteCallback callback)27 void lockDevice(in RemoteCallback callback); 28 29 const String KEY_UNLOCK_DEVICE_RESULT = "KEY_UNLOCK_DEVICE_RESULT"; unlockDevice(in RemoteCallback callback)30 void unlockDevice(in RemoteCallback callback); 31 32 const String KEY_IS_DEVICE_LOCKED_RESULT = "KEY_IS_DEVICE_LOCKED_RESULT"; isDeviceLocked(in RemoteCallback callback)33 void isDeviceLocked(in RemoteCallback callback); 34 35 const String KEY_HARDWARE_ID_RESULT = "KEY_HARDWARE_ID_RESULT"; getDeviceIdentifier(in RemoteCallback callback)36 void getDeviceIdentifier(in RemoteCallback callback); 37 38 const String KEY_CLEAR_DEVICE_RESULT = "KEY_CLEAR_DEVICE_RESULT"; clearDeviceRestrictions(in RemoteCallback callback)39 void clearDeviceRestrictions(in RemoteCallback callback); 40 } 41