blob: e061ab354d733e0163e65790deed87dee31dc7ae [file] [log] [blame]
Dianne Hackbornd6847842010-01-12 18:14:19 -08001/*
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
Dianne Hackborn87bba1e2010-02-26 17:25:54 -080018package android.app.admin;
Dianne Hackbornd6847842010-01-12 18:14:19 -080019
20import android.content.ComponentName;
Dianne Hackborn8ea138c2010-01-26 18:01:04 -080021import android.os.RemoteCallback;
Dianne Hackbornd6847842010-01-12 18:14:19 -080022
23/**
24 * Internal IPC interface to the device policy service.
25 * {@hide}
26 */
27interface IDevicePolicyManager {
Amith Yamasani599dd7c2012-09-14 23:20:08 -070028 void setPasswordQuality(in ComponentName who, int quality, int userHandle);
29 int getPasswordQuality(in ComponentName who, int userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -070030
Amith Yamasani599dd7c2012-09-14 23:20:08 -070031 void setPasswordMinimumLength(in ComponentName who, int length, int userHandle);
32 int getPasswordMinimumLength(in ComponentName who, int userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -070033
Amith Yamasani599dd7c2012-09-14 23:20:08 -070034 void setPasswordMinimumUpperCase(in ComponentName who, int length, int userHandle);
35 int getPasswordMinimumUpperCase(in ComponentName who, int userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -070036
Amith Yamasani599dd7c2012-09-14 23:20:08 -070037 void setPasswordMinimumLowerCase(in ComponentName who, int length, int userHandle);
38 int getPasswordMinimumLowerCase(in ComponentName who, int userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -070039
Amith Yamasani599dd7c2012-09-14 23:20:08 -070040 void setPasswordMinimumLetters(in ComponentName who, int length, int userHandle);
41 int getPasswordMinimumLetters(in ComponentName who, int userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -070042
Amith Yamasani599dd7c2012-09-14 23:20:08 -070043 void setPasswordMinimumNumeric(in ComponentName who, int length, int userHandle);
44 int getPasswordMinimumNumeric(in ComponentName who, int userHandle);
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -070045
Amith Yamasani599dd7c2012-09-14 23:20:08 -070046 void setPasswordMinimumSymbols(in ComponentName who, int length, int userHandle);
47 int getPasswordMinimumSymbols(in ComponentName who, int userHandle);
Konstantin Lopyrevc8577402010-06-04 17:15:02 -070048
Amith Yamasani599dd7c2012-09-14 23:20:08 -070049 void setPasswordMinimumNonLetter(in ComponentName who, int length, int userHandle);
50 int getPasswordMinimumNonLetter(in ComponentName who, int userHandle);
Jim Millerb8ec4702012-08-31 17:19:10 -070051
Amith Yamasani599dd7c2012-09-14 23:20:08 -070052 void setPasswordHistoryLength(in ComponentName who, int length, int userHandle);
53 int getPasswordHistoryLength(in ComponentName who, int userHandle);
Konstantin Lopyrev32558232010-05-20 16:18:05 -070054
Amith Yamasani599dd7c2012-09-14 23:20:08 -070055 void setPasswordExpirationTimeout(in ComponentName who, long expiration, int userHandle);
56 long getPasswordExpirationTimeout(in ComponentName who, int userHandle);
Jim Millera4e28d12010-11-08 16:15:47 -080057
Amith Yamasani599dd7c2012-09-14 23:20:08 -070058 long getPasswordExpiration(in ComponentName who, int userHandle);
Jim Millera4e28d12010-11-08 16:15:47 -080059
Amith Yamasani599dd7c2012-09-14 23:20:08 -070060 boolean isActivePasswordSufficient(int userHandle);
61 int getCurrentFailedPasswordAttempts(int userHandle);
Jim Millerb8ec4702012-08-31 17:19:10 -070062
Amith Yamasani599dd7c2012-09-14 23:20:08 -070063 void setMaximumFailedPasswordsForWipe(in ComponentName admin, int num, int userHandle);
64 int getMaximumFailedPasswordsForWipe(in ComponentName admin, int userHandle);
Jim Millerb8ec4702012-08-31 17:19:10 -070065
Amith Yamasani599dd7c2012-09-14 23:20:08 -070066 boolean resetPassword(String password, int flags, int userHandle);
Jim Millerb8ec4702012-08-31 17:19:10 -070067
Amith Yamasani599dd7c2012-09-14 23:20:08 -070068 void setMaximumTimeToLock(in ComponentName who, long timeMs, int userHandle);
69 long getMaximumTimeToLock(in ComponentName who, int userHandle);
Jim Millerb8ec4702012-08-31 17:19:10 -070070
Dianne Hackborndf83afa2010-01-20 13:37:26 -080071 void lockNow();
Jim Millerb8ec4702012-08-31 17:19:10 -070072
Amith Yamasani599dd7c2012-09-14 23:20:08 -070073 void wipeData(int flags, int userHandle);
Oscar Montemayor69238c62010-08-03 10:51:06 -070074
Amith Yamasani599dd7c2012-09-14 23:20:08 -070075 ComponentName setGlobalProxy(in ComponentName admin, String proxySpec, String exclusionList, int userHandle);
76 ComponentName getGlobalProxyAdmin(int userHandle);
Andy Stadler7b0f8f02011-01-12 14:59:52 -080077
Amith Yamasani599dd7c2012-09-14 23:20:08 -070078 int setStorageEncryption(in ComponentName who, boolean encrypt, int userHandle);
79 boolean getStorageEncryption(in ComponentName who, int userHandle);
80 int getStorageEncryptionStatus(int userHandle);
Andy Stadler7b0f8f02011-01-12 14:59:52 -080081
Amith Yamasani599dd7c2012-09-14 23:20:08 -070082 void setCameraDisabled(in ComponentName who, boolean disabled, int userHandle);
83 boolean getCameraDisabled(in ComponentName who, int userHandle);
Ben Komalo2447edd2011-05-09 16:05:33 -070084
Jim Miller48b9b0d2012-09-19 23:16:50 -070085 void setKeyguardDisabledFeatures(in ComponentName who, int which, int userHandle);
86 int getKeyguardDisabledFeatures(in ComponentName who, int userHandle);
Jim Millerb8ec4702012-08-31 17:19:10 -070087
Amith Yamasani599dd7c2012-09-14 23:20:08 -070088 void setActiveAdmin(in ComponentName policyReceiver, boolean refreshing, int userHandle);
89 boolean isAdminActive(in ComponentName policyReceiver, int userHandle);
90 List<ComponentName> getActiveAdmins(int userHandle);
91 boolean packageHasActiveAdmins(String packageName, int userHandle);
92 void getRemoveWarning(in ComponentName policyReceiver, in RemoteCallback result, int userHandle);
93 void removeActiveAdmin(in ComponentName policyReceiver, int userHandle);
94 boolean hasGrantedPolicy(in ComponentName policyReceiver, int usesPolicy, int userHandle);
Jim Millerb8ec4702012-08-31 17:19:10 -070095
Konstantin Lopyrevc8577402010-06-04 17:15:02 -070096 void setActivePasswordState(int quality, int length, int letters, int uppercase, int lowercase,
Amith Yamasani599dd7c2012-09-14 23:20:08 -070097 int numbers, int symbols, int nonletter, int userHandle);
98 void reportFailedPasswordAttempt(int userHandle);
99 void reportSuccessfulPasswordAttempt(int userHandle);
Dianne Hackbornd6847842010-01-12 18:14:19 -0800100}