blob: d04f92039f4c85167568f42bf99af6fe6faa33d0 [file] [log] [blame]
Felipe Leme749b8892018-12-03 16:30:30 -08001/*
2 * Copyright (C) 2018 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 */
16package com.android.server.contentcapture;
17
18import android.annotation.NonNull;
Felipe Leme326f15a2019-02-19 09:42:24 -080019import android.annotation.Nullable;
Felipe Leme749b8892018-12-03 16:30:30 -080020import android.annotation.UserIdInt;
Felipe Leme326f15a2019-02-19 09:42:24 -080021import android.content.ContentCaptureOptions;
Felipe Leme749b8892018-12-03 16:30:30 -080022import android.os.Bundle;
23import android.os.IBinder;
24
25/**
26 * ContentCapture Manager local system service interface.
27 *
28 * @hide Only for use within the system server.
29 */
30public abstract class ContentCaptureManagerInternal {
31
32 /**
33 * Checks whether the given {@code uid} owns the
34 * {@link android.service.contentcapture.ContentCaptureService} implementation associated with
35 * the given {@code userId}.
36 */
37 public abstract boolean isContentCaptureServiceForUser(int uid, @UserIdInt int userId);
38
39 /**
40 * Notifies the intelligence service of new assist data for the given activity.
41 *
42 * @return {@code false} if there was no service set for the given user
43 */
44 public abstract boolean sendActivityAssistData(@UserIdInt int userId,
45 @NonNull IBinder activityToken, @NonNull Bundle data);
Felipe Leme326f15a2019-02-19 09:42:24 -080046
47 /**
48 * Gets the content capture options for the given user and package, or {@code null} if the
49 * package is not whitelisted by the service.
50 */
51 @Nullable
52 public abstract ContentCaptureOptions getOptionsForPackage(@UserIdInt int userId,
53 @NonNull String packageName);
Felipe Leme749b8892018-12-03 16:30:30 -080054}