INotificationManager.aidl revision 72f1cbb3b988d6daa61c45a69aa9f8024c029b06
19066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project/* //device/java/android/android/app/INotificationManager.aidl
29066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project**
39066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project** Copyright 2007, The Android Open Source Project
49066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project**
59066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project** Licensed under the Apache License, Version 2.0 (the "License");
69066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project** you may not use this file except in compliance with the License.
79066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project** You may obtain a copy of the License at
89066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project**
99066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project**     http://www.apache.org/licenses/LICENSE-2.0
109066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project**
119066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project** Unless required by applicable law or agreed to in writing, software
129066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project** distributed under the License is distributed on an "AS IS" BASIS,
139066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
149066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project** See the License for the specific language governing permissions and
159066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project** limitations under the License.
169066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project*/
179066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectpackage android.app;
199066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
209066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.app.ITransientNotification;
219066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.app.Notification;
22b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynoldsimport android.app.NotificationChannel;
231fc476d51203c0b76ebd0f2062adf3059437b0dcJohn Spurlockimport android.app.NotificationManager;
245feceebb892d4cb5777cea3c6174b206705d456bDaniel Sandlerimport android.content.ComponentName;
259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.content.Intent;
26cee44ba418bef83571349acb2d24ef29833502e0Christoph Studerimport android.content.pm.ParceledListSlice;
27e77bb36d48b6b8b5c3bb6a1195aca469bb237919John Spurlockimport android.net.Uri;
282b122f4c2e691f0319e4f9ea5873989792bb56a6John Spurlockimport android.os.Bundle;
29e46bb37acf6d3cfb9974672ace93f5381f70ad99Julia Reynoldsimport android.service.notification.Adjustment;
307340fc8665ae3f9f1978f42aa0e5e1da85036158John Spurlockimport android.service.notification.Condition;
31e77bb36d48b6b8b5c3bb6a1195aca469bb237919John Spurlockimport android.service.notification.IConditionListener;
327340fc8665ae3f9f1978f42aa0e5e1da85036158John Spurlockimport android.service.notification.IConditionProvider;
335feceebb892d4cb5777cea3c6174b206705d456bDaniel Sandlerimport android.service.notification.INotificationListener;
34e77bb36d48b6b8b5c3bb6a1195aca469bb237919John Spurlockimport android.service.notification.StatusBarNotification;
35a47a27ffd92f172298c2728040e49d502a2d6c87Julia Reynoldsimport android.app.AutomaticZenRule;
36056c519df1dfb8fdc57daddfdf09bc0e1ffddac4John Spurlockimport android.service.notification.ZenModeConfig;
37fde19b106b2b77bc3540b04445357870caf878b5Daniel Sandler
389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project/** {@hide} */
399066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectinterface INotificationManager
409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project{
414120375d46091df8527bb701882e056fbb0e6b06Dianne Hackborn    void cancelAllNotifications(String pkg, int userId);
429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
439066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    void enqueueToast(String pkg, ITransientNotification callback, int duration);
449066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    void cancelToast(String pkg, ITransientNotification callback);
458fd7f1ed7c11d35b3f2a97878e68ee38a551dd15Christoph Studer    void enqueueNotificationWithTag(String pkg, String opPkg, String tag, int id,
464120375d46091df8527bb701882e056fbb0e6b06Dianne Hackborn            in Notification notification, inout int[] idReceived, int userId);
474120375d46091df8527bb701882e056fbb0e6b06Dianne Hackborn    void cancelNotificationWithTag(String pkg, String tag, int id, int userId);
480da673f02e542c644c300568807c80e196296860Daniel Sandler
494a900acdef4559f9f84ca7e2bce45485215fc130Daniel Sandler    void setNotificationsEnabledForPackage(String pkg, int uid, boolean enabled);
504a900acdef4559f9f84ca7e2bce45485215fc130Daniel Sandler    boolean areNotificationsEnabledForPackage(String pkg, int uid);
5181afbcdbf96c687b61ed53170e1654f4f8ea5b15Julia Reynolds    boolean areNotificationsEnabled(String pkg);
52fde19b106b2b77bc3540b04445357870caf878b5Daniel Sandler
53ef37f284364cc45c2ed91bfe04c489d2cedd32d2Julia Reynolds    void setVisibilityOverride(String pkg, int uid, int visibility);
54ef37f284364cc45c2ed91bfe04c489d2cedd32d2Julia Reynolds    int getVisibilityOverride(String pkg, int uid);
55ef37f284364cc45c2ed91bfe04c489d2cedd32d2Julia Reynolds    void setPriority(String pkg, int uid, int priority);
56ef37f284364cc45c2ed91bfe04c489d2cedd32d2Julia Reynolds    int getPriority(String pkg, int uid);
57ef37f284364cc45c2ed91bfe04c489d2cedd32d2Julia Reynolds    void setImportance(String pkg, int uid, int importance);
58ef37f284364cc45c2ed91bfe04c489d2cedd32d2Julia Reynolds    int getImportance(String pkg, int uid);
59ef37f284364cc45c2ed91bfe04c489d2cedd32d2Julia Reynolds    int getPackageImportance(String pkg);
603ad4e3a45bbe44129b14c4d391431e44f1e04f0cChris Wren
61b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynolds    void createNotificationChannel(String pkg, in NotificationChannel channel);
62b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynolds    void updateNotificationChannel(String pkg, in NotificationChannel channel);
63b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynolds    void updateNotificationChannelForPackage(String pkg, int uid, in NotificationChannel channel);
64b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynolds    NotificationChannel getNotificationChannel(String pkg, String channelId);
65b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynolds    NotificationChannel getNotificationChannelForPackage(String pkg, int uid, String channelId);
66b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynolds    void deleteNotificationChannel(String pkg, String channelId);
67b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynolds    ParceledListSlice getNotificationChannels(String pkg);
68b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynolds    ParceledListSlice getNotificationChannelsForPackage(String pkg, int uid);
69b5e44b796618c376cf535e43aaa86ea4522e7770Julia Reynolds
70cee44ba418bef83571349acb2d24ef29833502e0Christoph Studer    // TODO: Remove this when callers have been migrated to the equivalent
71cee44ba418bef83571349acb2d24ef29833502e0Christoph Studer    // INotificationListener method.
72fde19b106b2b77bc3540b04445357870caf878b5Daniel Sandler    StatusBarNotification[] getActiveNotifications(String callingPkg);
7378d0d25dca42fcde5dcea98ab74bfc7f5c8e1114Daniel Sandler    StatusBarNotification[] getHistoricalNotifications(String callingPkg, int count);
7409a247e9a86df068422cbe8b60430fb6583c028cDaniel Sandler
750efdb88ccc9d650e7a644b9be8f63792f2c66841Chris Wren    void registerListener(in INotificationListener listener, in ComponentName component, int userid);
7609a247e9a86df068422cbe8b60430fb6583c028cDaniel Sandler    void unregisterListener(in INotificationListener listener, int userid);
779066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
78e6f7f2e3a01b8deb00e03ccfa93751c315f14ef0Daniel Sandler    void cancelNotificationFromListener(in INotificationListener token, String pkg, String tag, int id);
79a4294297d46cc0b9f45897bc688c267502cce3efJohn Spurlock    void cancelNotificationsFromListener(in INotificationListener token, in String[] keys);
8025cf8cee6f304a286d321204e448b18ce733a60cDaniel Sandler
8172f1cbb3b988d6daa61c45a69aa9f8024c029b06Julia Reynolds    void snoozeNotificationFromListener(in INotificationListener token, String key, long until);
8272f1cbb3b988d6daa61c45a69aa9f8024c029b06Julia Reynolds
83ab41eecf22352f54167ce9a272a397715ffd0015Chris Wren    void requestBindListener(in ComponentName component);
84ab41eecf22352f54167ce9a272a397715ffd0015Chris Wren    void requestUnbindListener(in INotificationListener token);
8538e6ca4e7481f3b1c8072705bfd38b8b454ccfe7Julia Reynolds    void requestBindProvider(in ComponentName component);
8638e6ca4e7481f3b1c8072705bfd38b8b454ccfe7Julia Reynolds    void requestUnbindProvider(in IConditionProvider token);
87ab41eecf22352f54167ce9a272a397715ffd0015Chris Wren
88f47e51ec605fccf7fed9e50d1adc98fbd4e8b340Amith Yamasani    void setNotificationsShownFromListener(in INotificationListener token, in String[] keys);
89f47e51ec605fccf7fed9e50d1adc98fbd4e8b340Amith Yamasani
90b82bc785c966b59621a3a2523ba7cdf84a73697bChristoph Studer    ParceledListSlice getActiveNotificationsFromListener(in INotificationListener token, in String[] keys, int trim);
91d8afe3c41e65a8f6ff4283c124ba250c92cf50c6John Spurlock    void requestHintsFromListener(in INotificationListener token, int hints);
92d8afe3c41e65a8f6ff4283c124ba250c92cf50c6John Spurlock    int getHintsFromListener(in INotificationListener token);
9385a384b4256121eb85b7e72bcd50f3348f365d41Christoph Studer    void requestInterruptionFilterFromListener(in INotificationListener token, int interruptionFilter);
9485a384b4256121eb85b7e72bcd50f3348f365d41Christoph Studer    int getInterruptionFilterFromListener(in INotificationListener token);
95b82bc785c966b59621a3a2523ba7cdf84a73697bChristoph Studer    void setOnNotificationPostedTrimFromListener(in INotificationListener token, int trim);
96807749301fcbda892dfc8a5832b19acf7d1cf53bJohn Spurlock    void setInterruptionFilter(String pkg, int interruptionFilter);
97056c519df1dfb8fdc57daddfdf09bc0e1ffddac4John Spurlock
98e46bb37acf6d3cfb9974672ace93f5381f70ad99Julia Reynolds    void applyAdjustmentFromRankerService(in INotificationListener token, in Adjustment adjustment);
99e46bb37acf6d3cfb9974672ace93f5381f70ad99Julia Reynolds    void applyAdjustmentsFromRankerService(in INotificationListener token, in List<Adjustment> adjustments);
10051017d0e23ce9855fabcf786a2067ceb19121fbcChris Wren
101b4782526f5600d9759baac64b23e0c0cd05e2050John Spurlock    ComponentName getEffectsSuppressor();
1022b122f4c2e691f0319e4f9ea5873989792bb56a6John Spurlock    boolean matchesCallFilter(in Bundle extras);
103530052a2fe3b6a6a4246ce28ab0ced647fe7f470John Spurlock    boolean isSystemConditionProviderEnabled(String path);
104b4782526f5600d9759baac64b23e0c0cd05e2050John Spurlock
105b2278d65714c0dd0a6f94d1913db1ebc8bfc8b06John Spurlock    int getZenMode();
106056c519df1dfb8fdc57daddfdf09bc0e1ffddac4John Spurlock    ZenModeConfig getZenModeConfig();
107b2278d65714c0dd0a6f94d1913db1ebc8bfc8b06John Spurlock    oneway void setZenMode(int mode, in Uri conditionId, String reason);
108e77bb36d48b6b8b5c3bb6a1195aca469bb237919John Spurlock    oneway void notifyConditions(String pkg, in IConditionProvider provider, in Condition[] conditions);
109807749301fcbda892dfc8a5832b19acf7d1cf53bJohn Spurlock    boolean isNotificationPolicyAccessGranted(String pkg);
110807749301fcbda892dfc8a5832b19acf7d1cf53bJohn Spurlock    NotificationManager.Policy getNotificationPolicy(String pkg);
111807749301fcbda892dfc8a5832b19acf7d1cf53bJohn Spurlock    void setNotificationPolicy(String pkg, in NotificationManager.Policy policy);
112807749301fcbda892dfc8a5832b19acf7d1cf53bJohn Spurlock    String[] getPackagesRequestingNotificationPolicyAccess();
113807749301fcbda892dfc8a5832b19acf7d1cf53bJohn Spurlock    boolean isNotificationPolicyAccessGrantedForPackage(String pkg);
114807749301fcbda892dfc8a5832b19acf7d1cf53bJohn Spurlock    void setNotificationPolicyAccessGranted(String pkg, boolean granted);
1154fe98d6d4cc4898809b81d001f6b8a1b71b08f3aJulia Reynolds    AutomaticZenRule getAutomaticZenRule(String id);
116361e82d399d33e0c45e9a002f2e519f1457a84adJulia Reynolds    List<ZenModeConfig.ZenRule> getZenRules();
117361e82d399d33e0c45e9a002f2e519f1457a84adJulia Reynolds    String addAutomaticZenRule(in AutomaticZenRule automaticZenRule);
118361e82d399d33e0c45e9a002f2e519f1457a84adJulia Reynolds    boolean updateAutomaticZenRule(String id, in AutomaticZenRule automaticZenRule);
1194fe98d6d4cc4898809b81d001f6b8a1b71b08f3aJulia Reynolds    boolean removeAutomaticZenRule(String id);
120c8e54e8d5ec038ee6f520ee95948e2ef20490e97Julia Reynolds    boolean removeAutomaticZenRules(String packageName);
12143b70cdc395d3a6cf3bd0a78b686a7f5d3ed86e0Julia Reynolds    int getRuleInstanceCount(in ComponentName owner);
122f9767d680d63ac1771a17ccc5775cd337ff967b8Christopher Tate
123f9767d680d63ac1771a17ccc5775cd337ff967b8Christopher Tate    byte[] getBackupPayload(int user);
124f9767d680d63ac1771a17ccc5775cd337ff967b8Christopher Tate    void applyRestore(in byte[] payload, int user);
125994349c61e8697e626a7cd2b241a16b2b7669305Dan Sandler
126994349c61e8697e626a7cd2b241a16b2b7669305Dan Sandler    ParceledListSlice getAppActiveNotifications(String callingPkg, int userId);
127ea75fddbb452638f286c2fcdbddff145ee1a85cbDan Sandler}
128