INotificationManager.aidl revision 994349c61e8697e626a7cd2b241a16b2b7669305
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
201fc476d51203c0b76ebd0f2062adf3059437b0dcJohn Spurlockimport android.app.INotificationManagerCallback;
219066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.app.ITransientNotification;
229066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectimport android.app.Notification;
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;
297340fc8665ae3f9f1978f42aa0e5e1da85036158John Spurlockimport android.service.notification.Condition;
30e77bb36d48b6b8b5c3bb6a1195aca469bb237919John Spurlockimport android.service.notification.IConditionListener;
317340fc8665ae3f9f1978f42aa0e5e1da85036158John Spurlockimport android.service.notification.IConditionProvider;
325feceebb892d4cb5777cea3c6174b206705d456bDaniel Sandlerimport android.service.notification.INotificationListener;
33e77bb36d48b6b8b5c3bb6a1195aca469bb237919John Spurlockimport android.service.notification.StatusBarNotification;
34056c519df1dfb8fdc57daddfdf09bc0e1ffddac4John Spurlockimport android.service.notification.ZenModeConfig;
35fde19b106b2b77bc3540b04445357870caf878b5Daniel Sandler
369066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project/** {@hide} */
379066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectinterface INotificationManager
389066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project{
394120375d46091df8527bb701882e056fbb0e6b06Dianne Hackborn    void cancelAllNotifications(String pkg, int userId);
409066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
419066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    void enqueueToast(String pkg, ITransientNotification callback, int duration);
429066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project    void cancelToast(String pkg, ITransientNotification callback);
438fd7f1ed7c11d35b3f2a97878e68ee38a551dd15Christoph Studer    void enqueueNotificationWithTag(String pkg, String opPkg, String tag, int id,
444120375d46091df8527bb701882e056fbb0e6b06Dianne Hackborn            in Notification notification, inout int[] idReceived, int userId);
454120375d46091df8527bb701882e056fbb0e6b06Dianne Hackborn    void cancelNotificationWithTag(String pkg, String tag, int id, int userId);
460da673f02e542c644c300568807c80e196296860Daniel Sandler
474a900acdef4559f9f84ca7e2bce45485215fc130Daniel Sandler    void setNotificationsEnabledForPackage(String pkg, int uid, boolean enabled);
484a900acdef4559f9f84ca7e2bce45485215fc130Daniel Sandler    boolean areNotificationsEnabledForPackage(String pkg, int uid);
49fde19b106b2b77bc3540b04445357870caf878b5Daniel Sandler
5054bbef435ed857fc68941672799fc8001c101119Chris Wren    void setPackagePriority(String pkg, int uid, int priority);
5154bbef435ed857fc68941672799fc8001c101119Chris Wren    int getPackagePriority(String pkg, int uid);
5254bbef435ed857fc68941672799fc8001c101119Chris Wren
531d881a1e986c706963c254fbe2b6296a1cd10b75John Spurlock    void setPackagePeekable(String pkg, int uid, boolean peekable);
541d881a1e986c706963c254fbe2b6296a1cd10b75John Spurlock    boolean getPackagePeekable(String pkg, int uid);
551d881a1e986c706963c254fbe2b6296a1cd10b75John Spurlock
563ad4e3a45bbe44129b14c4d391431e44f1e04f0cChris Wren    void setPackageVisibilityOverride(String pkg, int uid, int visibility);
573ad4e3a45bbe44129b14c4d391431e44f1e04f0cChris Wren    int getPackageVisibilityOverride(String pkg, int uid);
583ad4e3a45bbe44129b14c4d391431e44f1e04f0cChris Wren
59cee44ba418bef83571349acb2d24ef29833502e0Christoph Studer    // TODO: Remove this when callers have been migrated to the equivalent
60cee44ba418bef83571349acb2d24ef29833502e0Christoph Studer    // INotificationListener method.
61fde19b106b2b77bc3540b04445357870caf878b5Daniel Sandler    StatusBarNotification[] getActiveNotifications(String callingPkg);
6278d0d25dca42fcde5dcea98ab74bfc7f5c8e1114Daniel Sandler    StatusBarNotification[] getHistoricalNotifications(String callingPkg, int count);
6309a247e9a86df068422cbe8b60430fb6583c028cDaniel Sandler
645feceebb892d4cb5777cea3c6174b206705d456bDaniel Sandler    void registerListener(in INotificationListener listener, in ComponentName component, int userid);
6509a247e9a86df068422cbe8b60430fb6583c028cDaniel Sandler    void unregisterListener(in INotificationListener listener, int userid);
669066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
67e6f7f2e3a01b8deb00e03ccfa93751c315f14ef0Daniel Sandler    void cancelNotificationFromListener(in INotificationListener token, String pkg, String tag, int id);
68a4294297d46cc0b9f45897bc688c267502cce3efJohn Spurlock    void cancelNotificationsFromListener(in INotificationListener token, in String[] keys);
6925cf8cee6f304a286d321204e448b18ce733a60cDaniel Sandler
70b82bc785c966b59621a3a2523ba7cdf84a73697bChristoph Studer    ParceledListSlice getActiveNotificationsFromListener(in INotificationListener token, in String[] keys, int trim);
71d8afe3c41e65a8f6ff4283c124ba250c92cf50c6John Spurlock    void requestHintsFromListener(in INotificationListener token, int hints);
72d8afe3c41e65a8f6ff4283c124ba250c92cf50c6John Spurlock    int getHintsFromListener(in INotificationListener token);
7385a384b4256121eb85b7e72bcd50f3348f365d41Christoph Studer    void requestInterruptionFilterFromListener(in INotificationListener token, int interruptionFilter);
7485a384b4256121eb85b7e72bcd50f3348f365d41Christoph Studer    int getInterruptionFilterFromListener(in INotificationListener token);
75b82bc785c966b59621a3a2523ba7cdf84a73697bChristoph Studer    void setOnNotificationPostedTrimFromListener(in INotificationListener token, int trim);
761fc476d51203c0b76ebd0f2062adf3059437b0dcJohn Spurlock    NotificationManager.Policy.Token getPolicyTokenFromListener(in INotificationListener listener);
77056c519df1dfb8fdc57daddfdf09bc0e1ffddac4John Spurlock
78b4782526f5600d9759baac64b23e0c0cd05e2050John Spurlock    ComponentName getEffectsSuppressor();
792b122f4c2e691f0319e4f9ea5873989792bb56a6John Spurlock    boolean matchesCallFilter(in Bundle extras);
80530052a2fe3b6a6a4246ce28ab0ced647fe7f470John Spurlock    boolean isSystemConditionProviderEnabled(String path);
81b4782526f5600d9759baac64b23e0c0cd05e2050John Spurlock
82b2278d65714c0dd0a6f94d1913db1ebc8bfc8b06John Spurlock    int getZenMode();
83056c519df1dfb8fdc57daddfdf09bc0e1ffddac4John Spurlock    ZenModeConfig getZenModeConfig();
84b2278d65714c0dd0a6f94d1913db1ebc8bfc8b06John Spurlock    boolean setZenModeConfig(in ZenModeConfig config, String reason);
85b2278d65714c0dd0a6f94d1913db1ebc8bfc8b06John Spurlock    oneway void setZenMode(int mode, in Uri conditionId, String reason);
86e77bb36d48b6b8b5c3bb6a1195aca469bb237919John Spurlock    oneway void notifyConditions(String pkg, in IConditionProvider provider, in Condition[] conditions);
873b98b3f1f85aff0c84ebef4dd497c146d1b4d248John Spurlock    oneway void requestZenModeConditions(in IConditionListener callback, int relevance);
881fc476d51203c0b76ebd0f2062adf3059437b0dcJohn Spurlock    oneway void requestNotificationPolicyToken(String pkg, in INotificationManagerCallback callback);
891fc476d51203c0b76ebd0f2062adf3059437b0dcJohn Spurlock    boolean isNotificationPolicyTokenValid(String pkg, in NotificationManager.Policy.Token token);
901fc476d51203c0b76ebd0f2062adf3059437b0dcJohn Spurlock    NotificationManager.Policy getNotificationPolicy(in NotificationManager.Policy.Token token);
911fc476d51203c0b76ebd0f2062adf3059437b0dcJohn Spurlock    void setNotificationPolicy(in NotificationManager.Policy.Token token, in NotificationManager.Policy policy);
92f9767d680d63ac1771a17ccc5775cd337ff967b8Christopher Tate
93f9767d680d63ac1771a17ccc5775cd337ff967b8Christopher Tate    byte[] getBackupPayload(int user);
94f9767d680d63ac1771a17ccc5775cd337ff967b8Christopher Tate    void applyRestore(in byte[] payload, int user);
95994349c61e8697e626a7cd2b241a16b2b7669305Dan Sandler
96994349c61e8697e626a7cd2b241a16b2b7669305Dan Sandler    ParceledListSlice getAppActiveNotifications(String callingPkg, int userId);
97ea75fddbb452638f286c2fcdbddff145ee1a85cbDan Sandler}
98