mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
This also adds a setting allowing people to turn blog post notifications off. Closes #488
28 lines
611 B
Java
28 lines
611 B
Java
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();
|
|
}
|