blob: 64aec7bf6b3e4dd504536c4783b320b3a700b6e3 [file] [log] [blame]
Chris Wailes2c5cb262021-01-12 16:37:57 -08001/*
2 * Copyright (C) 2021 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.art;
18
Jiakai Zhang6de42022022-03-28 12:31:54 +000019import android.annotation.SystemApi;
Chris Wailes2c5cb262021-01-12 16:37:57 -080020
21/**
Jiakai Zhang6de42022022-03-28 12:31:54 +000022 * This class provides a system API for functionality provided by the ART module.
23 *
24 * @hide
Chris Wailes2c5cb262021-01-12 16:37:57 -080025 */
Jiakai Zhang6de42022022-03-28 12:31:54 +000026@SystemApi(client = SystemApi.Client.SYSTEM_SERVER)
Paul Duffinf1c982e2021-02-10 11:37:43 +000027public final class ArtManagerLocal {
Jiakai Zhang6de42022022-03-28 12:31:54 +000028 private static final String TAG = "ArtService";
Chris Wailes2c5cb262021-01-12 16:37:57 -080029
Paul Duffinf1c982e2021-02-10 11:37:43 +000030 public ArtManagerLocal() {}
Chris Wailes2c5cb262021-01-12 16:37:57 -080031}