package org.briarproject.android.api; import org.briarproject.api.sync.GroupId; /** Manages notifications for private messages and forum posts. */ public interface AndroidNotificationManager { void showPrivateMessageNotification(GroupId g); void clearPrivateMessageNotification(GroupId g); void showForumPostNotification(GroupId g); void clearForumPostNotification(GroupId g); void showBlogPostNotification(GroupId g); void clearBlogPostNotification(); void blockNotification(GroupId g); void unblockNotification(GroupId g); void blockBlogNotification(); void unblockBlogNotification(); }