blob: f1476b34388b911a992d50046239fa40a53ec84e [file] [log] [blame]
Craig Mautnerc2c0a612014-02-20 20:25:41 -08001/*
2 * Copyright (C) 2014 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
Adam Lesinski182f73f2013-12-05 16:48:06 -080017package com.android.server.notification;
18
19import android.app.Notification;
Julia Reynoldsf3de8aa2017-09-29 15:52:37 -040020import android.app.NotificationChannel;
Adam Lesinski182f73f2013-12-05 16:48:06 -080021
22public interface NotificationManagerInternal {
Julia Reynoldsf3de8aa2017-09-29 15:52:37 -040023 NotificationChannel getNotificationChannel(String pkg, int uid, String channelId);
Adam Lesinski182f73f2013-12-05 16:48:06 -080024 void enqueueNotification(String pkg, String basePkg, int callingUid, int callingPid,
Julia Reynoldsfea6f7b2017-04-19 13:50:12 -040025 String tag, int id, Notification notification, int userId);
Christoph Studer365e4c32014-09-18 20:35:36 +020026
27 void removeForegroundServiceFlagFromNotification(String pkg, int notificationId, int userId);
Adam Lesinski182f73f2013-12-05 16:48:06 -080028}