Home | History | Annotate | Download | only in admin
      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 
     18 package android.app.admin;
     19 
     20 import android.content.ComponentName;
     21 import android.os.RemoteCallback;
     22 
     23 /**
     24  * Internal IPC interface to the device policy service.
     25  * {@hide}
     26  */
     27 interface 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     boolean isActivePasswordSufficient();
     35     int getCurrentFailedPasswordAttempts();
     36 
     37     void setMaximumFailedPasswordsForWipe(in ComponentName admin, int num);
     38     int getMaximumFailedPasswordsForWipe(in ComponentName admin);
     39 
     40     boolean resetPassword(String password, int flags);
     41 
     42     void setMaximumTimeToLock(in ComponentName who, long timeMs);
     43     long getMaximumTimeToLock(in ComponentName who);
     44 
     45     void lockNow();
     46 
     47     void wipeData(int flags);
     48 
     49     void setActiveAdmin(in ComponentName policyReceiver);
     50     boolean isAdminActive(in ComponentName policyReceiver);
     51     List<ComponentName> getActiveAdmins();
     52     boolean packageHasActiveAdmins(String packageName);
     53     void getRemoveWarning(in ComponentName policyReceiver, in RemoteCallback result);
     54     void removeActiveAdmin(in ComponentName policyReceiver);
     55 
     56     void setActivePasswordState(int quality, int length);
     57     void reportFailedPasswordAttempt();
     58     void reportSuccessfulPasswordAttempt();
     59 }
     60