Factor out generic sharing code from ForumSharingManger

This commit is contained in:
str4d
2016-06-16 04:26:49 +00:00
parent 5df2776dc2
commit 9ae64124d3
49 changed files with 1723 additions and 1130 deletions

View File

@@ -0,0 +1,11 @@
package org.briarproject.api.sharing;
import org.briarproject.api.sync.Group;
import org.briarproject.api.sync.GroupId;
public interface Shareable {
GroupId getId();
Group getGroup();
}