• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
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 package com.android.server.notification;
17 
18 import android.app.NotificationChannel;
19 import android.app.NotificationChannelGroup;
20 import android.content.pm.ParceledListSlice;
21 import android.os.UserHandle;
22 
23 import java.util.Collection;
24 
25 public interface RankingConfig {
26 
setImportance(String packageName, int uid, int importance)27     void setImportance(String packageName, int uid, int importance);
getImportance(String packageName, int uid)28     int getImportance(String packageName, int uid);
setShowBadge(String packageName, int uid, boolean showBadge)29     void setShowBadge(String packageName, int uid, boolean showBadge);
canShowBadge(String packageName, int uid)30     boolean canShowBadge(String packageName, int uid);
badgingEnabled(UserHandle userHandle)31     boolean badgingEnabled(UserHandle userHandle);
32 
getNotificationChannelGroups(String pkg, int uid)33     Collection<NotificationChannelGroup> getNotificationChannelGroups(String pkg,
34             int uid);
createNotificationChannelGroup(String pkg, int uid, NotificationChannelGroup group, boolean fromTargetApp)35     void createNotificationChannelGroup(String pkg, int uid, NotificationChannelGroup group,
36             boolean fromTargetApp);
getNotificationChannelGroups(String pkg, int uid, boolean includeDeleted)37     ParceledListSlice<NotificationChannelGroup> getNotificationChannelGroups(String pkg,
38             int uid, boolean includeDeleted);
createNotificationChannel(String pkg, int uid, NotificationChannel channel, boolean fromTargetApp)39     void createNotificationChannel(String pkg, int uid, NotificationChannel channel,
40             boolean fromTargetApp);
updateNotificationChannel(String pkg, int uid, NotificationChannel channel, boolean fromUser)41     void updateNotificationChannel(String pkg, int uid, NotificationChannel channel, boolean fromUser);
getNotificationChannel(String pkg, int uid, String channelId, boolean includeDeleted)42     NotificationChannel getNotificationChannel(String pkg, int uid, String channelId, boolean includeDeleted);
deleteNotificationChannel(String pkg, int uid, String channelId)43     void deleteNotificationChannel(String pkg, int uid, String channelId);
permanentlyDeleteNotificationChannel(String pkg, int uid, String channelId)44     void permanentlyDeleteNotificationChannel(String pkg, int uid, String channelId);
permanentlyDeleteNotificationChannels(String pkg, int uid)45     void permanentlyDeleteNotificationChannels(String pkg, int uid);
getNotificationChannels(String pkg, int uid, boolean includeDeleted)46     ParceledListSlice<NotificationChannel> getNotificationChannels(String pkg, int uid, boolean includeDeleted);
47 }
48