mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
20 lines
465 B
Java
20 lines
465 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 blockNotification(GroupId g);
|
|
|
|
void unblockNotification(GroupId g);
|
|
}
|