blob: 85248aff487781f5a95fdff65ac02f3a9e44bb18 [file] [log] [blame]
Lin Guoc1133ca2019-01-28 22:27:37 -08001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.car.settings.testutils;
18
19import android.annotation.Nullable;
20import android.app.admin.DevicePolicyManager;
21
22import org.robolectric.annotation.Implementation;
23import org.robolectric.annotation.Implements;
24import org.robolectric.annotation.Resetter;
25
26import java.util.List;
27
28@Implements(value = DevicePolicyManager.class)
29public class ShadowDevicePolicyManager extends org.robolectric.shadows.ShadowDevicePolicyManager {
30 @Nullable
31 private static List<String> sPermittedInputMethods;
32
33 @Implementation
34 @Nullable
35 protected List<String> getPermittedInputMethodsForCurrentUser() {
36 return sPermittedInputMethods;
37 }
38
39 public static void setPermittedInputMethodsForCurrentUser(@Nullable List<String> inputMethods) {
40 sPermittedInputMethods = inputMethods;
41 }
42
43 @Resetter
44 public static void reset() {
45 sPermittedInputMethods = null;
46 }
47}