Implement first prototype of private group message threads

This commit is contained in:
Torsten Grote
2016-10-11 16:18:21 -03:00
parent 65b47bb5d2
commit c83d4bbb39
19 changed files with 411 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
package org.briarproject.android.privategroup.conversation;
import org.briarproject.android.threaded.ThreadListController;
import org.briarproject.api.privategroup.GroupMessageHeader;
import org.briarproject.api.privategroup.PrivateGroup;
public interface GroupController
extends
ThreadListController<PrivateGroup, GroupMessageItem, GroupMessageHeader> {
}