IDevicePolicyManager.aidl revision 3255823de062e981f7bfc7994919207988697e45
1/*
2**
3** Copyright 2010, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9**     http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18package android.app.admin;
19
20import android.content.ComponentName;
21import android.os.RemoteCallback;
22
23/**
24 * Internal IPC interface to the device policy service.
25 * {@hide}
26 */
27interface IDevicePolicyManager {
28    void setPasswordQuality(in ComponentName who, int quality);
29    int getPasswordQuality(in ComponentName who);
30
31    void setPasswordMinimumLength(in ComponentName who, int length);
32    int getPasswordMinimumLength(in ComponentName who);
33
34    void setPasswordHistoryLength(in ComponentName who, int length);
35    int getPasswordHistoryLength(in ComponentName who);
36
37    boolean isActivePasswordSufficient();
38    int getCurrentFailedPasswordAttempts();
39
40    void setMaximumFailedPasswordsForWipe(in ComponentName admin, int num);
41    int getMaximumFailedPasswordsForWipe(in ComponentName admin);
42
43    boolean resetPassword(String password, int flags);
44
45    void setMaximumTimeToLock(in ComponentName who, long timeMs);
46    long getMaximumTimeToLock(in ComponentName who);
47
48    void lockNow();
49
50    void wipeData(int flags);
51
52    void setActiveAdmin(in ComponentName policyReceiver);
53    boolean isAdminActive(in ComponentName policyReceiver);
54    List<ComponentName> getActiveAdmins();
55    boolean packageHasActiveAdmins(String packageName);
56    void getRemoveWarning(in ComponentName policyReceiver, in RemoteCallback result);
57    void removeActiveAdmin(in ComponentName policyReceiver);
58
59    void setActivePasswordState(int quality, int length);
60    void reportFailedPasswordAttempt();
61    void reportSuccessfulPasswordAttempt();
62}
63