Use 'forum' instead of 'group'. #174

This commit is contained in:
akwizgran
2015-12-15 11:21:41 +00:00
parent 2621ab011c
commit e7e7bf35ea
27 changed files with 602 additions and 622 deletions

View File

@@ -10,13 +10,13 @@ import org.briarproject.api.messaging.GroupId;
*/
public interface AndroidNotificationManager extends Service {
public void showPrivateMessageNotification(ContactId c);
void showPrivateMessageNotification(ContactId c);
public void clearPrivateMessageNotification(ContactId c);
void clearPrivateMessageNotification(ContactId c);
public void showGroupPostNotification(GroupId g);
void showForumPostNotification(GroupId g);
public void clearGroupPostNotification(GroupId g);
void clearForumPostNotification(GroupId g);
public void clearNotifications();
void clearNotifications();
}