Files
briar/briar-android/src/org/briarproject/android/api/AndroidNotificationManager.java
2016-08-20 18:40:59 +01:00

39 lines
815 B
Java

package org.briarproject.android.api;
import org.briarproject.api.sync.GroupId;
/**
* Manages notifications for private messages, forum posts, blog posts and
* introductions.
*/
public interface AndroidNotificationManager {
void clearPrivateMessageNotification(GroupId g);
void clearAllContactNotifications();
void clearForumPostNotification(GroupId g);
void clearAllForumPostNotifications();
void clearBlogPostNotification(GroupId g);
void clearAllBlogPostNotifications();
void blockNotification(GroupId g);
void unblockNotification(GroupId g);
void blockAllContactNotifications();
void unblockAllContactNotifications();
void blockAllForumPostNotifications();
void unblockAllForumPostNotifications();
void blockAllBlogPostNotifications();
void unblockAllBlogPostNotifications();
}