blob: 3762ebb0b90229764da39976172067963a0ec21e [file] [log] [blame]
Song Panf93a39c2019-11-19 00:58:31 +00001/*
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.server.integrity;
18
19import android.content.Context;
20
21import com.android.server.SystemService;
22
23/**
24 * Service that manages app integrity rules and verifications.
25 *
26 * @hide
27 */
28public class AppIntegrityManagerService extends SystemService {
29
30 private Context mContext;
31 private AppIntegrityManagerServiceImpl mService;
32
33 public AppIntegrityManagerService(Context context) {
34 super(context);
35 mContext = context;
36 }
37
38 @Override
39 public void onStart() {
Song Pan6e3677c2019-10-29 14:19:26 +000040 mService = AppIntegrityManagerServiceImpl.create(mContext);
41 publishBinderService(Context.APP_INTEGRITY_SERVICE, mService);
Song Panf93a39c2019-11-19 00:58:31 +000042 }
43}