am b060f018
: am 91aa1bdb
: am 19847b07
: am b46e4806
: Merge "Remove TrustAgent whitelisting API" into lmp-mr1-dev
* commit 'b060f018effb27a79797e55f9eb6a592db2cb39a': Remove TrustAgent whitelisting API
This commit is contained in:
@ -5478,7 +5478,6 @@ package android.app.admin {
|
||||
method public boolean getScreenCaptureDisabled(android.content.ComponentName);
|
||||
method public boolean getStorageEncryption(android.content.ComponentName);
|
||||
method public int getStorageEncryptionStatus();
|
||||
method public java.util.List<android.os.PersistableBundle> getTrustAgentConfiguration(android.content.ComponentName, android.content.ComponentName);
|
||||
method public boolean hasCaCertInstalled(android.content.ComponentName, byte[]);
|
||||
method public boolean hasGrantedPolicy(android.content.ComponentName, int);
|
||||
method public boolean installCaCert(android.content.ComponentName, byte[]);
|
||||
@ -5527,7 +5526,6 @@ package android.app.admin {
|
||||
method public void setScreenCaptureDisabled(android.content.ComponentName, boolean);
|
||||
method public void setSecureSetting(android.content.ComponentName, java.lang.String, java.lang.String);
|
||||
method public int setStorageEncryption(android.content.ComponentName, boolean);
|
||||
method public void setTrustAgentConfiguration(android.content.ComponentName, android.content.ComponentName, android.os.PersistableBundle);
|
||||
method public void setUninstallBlocked(android.content.ComponentName, java.lang.String, boolean);
|
||||
method public boolean switchUser(android.content.ComponentName, android.os.UserHandle);
|
||||
method public void uninstallAllUserCaCerts(android.content.ComponentName);
|
||||
|
@ -5578,7 +5578,6 @@ package android.app.admin {
|
||||
method public boolean getScreenCaptureDisabled(android.content.ComponentName);
|
||||
method public boolean getStorageEncryption(android.content.ComponentName);
|
||||
method public int getStorageEncryptionStatus();
|
||||
method public java.util.List<android.os.PersistableBundle> getTrustAgentConfiguration(android.content.ComponentName, android.content.ComponentName);
|
||||
method public boolean hasCaCertInstalled(android.content.ComponentName, byte[]);
|
||||
method public boolean hasGrantedPolicy(android.content.ComponentName, int);
|
||||
method public boolean installCaCert(android.content.ComponentName, byte[]);
|
||||
@ -5628,7 +5627,6 @@ package android.app.admin {
|
||||
method public void setScreenCaptureDisabled(android.content.ComponentName, boolean);
|
||||
method public void setSecureSetting(android.content.ComponentName, java.lang.String, java.lang.String);
|
||||
method public int setStorageEncryption(android.content.ComponentName, boolean);
|
||||
method public void setTrustAgentConfiguration(android.content.ComponentName, android.content.ComponentName, android.os.PersistableBundle);
|
||||
method public void setUninstallBlocked(android.content.ComponentName, java.lang.String, boolean);
|
||||
method public boolean switchUser(android.content.ComponentName, android.os.UserHandle);
|
||||
method public void uninstallAllUserCaCerts(android.content.ComponentName);
|
||||
|
@ -2710,6 +2710,7 @@ public class DevicePolicyManager {
|
||||
* <p>If {@link #KEYGUARD_DISABLE_TRUST_AGENTS} is set and options is not null for all admins,
|
||||
* then it's up to the TrustAgent itself to aggregate the values from all device admins.
|
||||
* <p>Consult documentation for the specific TrustAgent to determine legal options parameters.
|
||||
* @hide
|
||||
*/
|
||||
public void setTrustAgentConfiguration(ComponentName admin, ComponentName target,
|
||||
PersistableBundle configuration) {
|
||||
@ -2735,6 +2736,7 @@ public class DevicePolicyManager {
|
||||
* for this {@param agent} or calls it with a null configuration, null is returned.
|
||||
* @param agent Which component to get enabled features for.
|
||||
* @return configuration for the given trust agent.
|
||||
* @hide
|
||||
*/
|
||||
public List<PersistableBundle> getTrustAgentConfiguration(ComponentName admin,
|
||||
ComponentName agent) {
|
||||
|
Reference in New Issue
Block a user