This CL continues the finalization of UI layout and strings for the enterprise privacy page: * Turn footer into a header * Update strings * Dynamically generate summaries for entry points in security page Bug: 32692748 Test: m RunSettingsRoboTests Change-Id: Ibf248ac269380fb1b919b01f88f721130060b7f9
95 lines
2.8 KiB
Java
95 lines
2.8 KiB
Java
/*
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.enterprise;
|
|
|
|
import android.annotation.NonNull;
|
|
import android.app.admin.DevicePolicyManager;
|
|
import android.content.ComponentName;
|
|
import android.os.UserHandle;
|
|
import android.support.annotation.Nullable;
|
|
|
|
import java.util.List;
|
|
|
|
public class DevicePolicyManagerWrapperImpl implements DevicePolicyManagerWrapper {
|
|
private final DevicePolicyManager mDpm;
|
|
|
|
public DevicePolicyManagerWrapperImpl(DevicePolicyManager dpm) {
|
|
mDpm = dpm;
|
|
}
|
|
|
|
@Override
|
|
public @Nullable List<ComponentName> getActiveAdminsAsUser(int userId) {
|
|
return mDpm.getActiveAdminsAsUser(userId);
|
|
}
|
|
|
|
@Override
|
|
public int getMaximumFailedPasswordsForWipe(@Nullable ComponentName admin, int userHandle) {
|
|
return mDpm.getMaximumFailedPasswordsForWipe(admin, userHandle);
|
|
}
|
|
|
|
@Override
|
|
public ComponentName getDeviceOwnerComponentOnAnyUser() {
|
|
return mDpm.getDeviceOwnerComponentOnAnyUser();
|
|
}
|
|
|
|
@Override
|
|
public int getDeviceOwnerUserId() {
|
|
return mDpm.getDeviceOwnerUserId();
|
|
}
|
|
|
|
@Override
|
|
public @Nullable ComponentName getProfileOwnerAsUser(final int userId) {
|
|
return mDpm.getProfileOwnerAsUser(userId);
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getDeviceOwnerOrganizationName() {
|
|
return mDpm.getDeviceOwnerOrganizationName();
|
|
}
|
|
|
|
@Override
|
|
public int getPermissionGrantState(@Nullable ComponentName admin, String packageName,
|
|
String permission) {
|
|
return mDpm.getPermissionGrantState(admin, packageName, permission);
|
|
}
|
|
|
|
@Override
|
|
public long getLastSecurityLogRetrievalTime() {
|
|
return mDpm.getLastSecurityLogRetrievalTime();
|
|
}
|
|
|
|
@Override
|
|
public long getLastBugReportRequestTime() {
|
|
return mDpm.getLastBugReportRequestTime();
|
|
}
|
|
|
|
@Override
|
|
public long getLastNetworkLogRetrievalTime() {
|
|
return mDpm.getLastNetworkLogRetrievalTime();
|
|
}
|
|
|
|
@Override
|
|
public boolean isCurrentInputMethodSetByOwner() {
|
|
return mDpm.isCurrentInputMethodSetByOwner();
|
|
}
|
|
|
|
@Override
|
|
public List<String> getOwnerInstalledCaCerts(@NonNull UserHandle user) {
|
|
return mDpm.getOwnerInstalledCaCerts(user);
|
|
}
|
|
}
|