Implement private group creation and fetching in PrivateGroupManager

This commit is contained in:
Torsten Grote
2016-10-13 17:19:27 -03:00
parent c934ec30aa
commit 8dc3bd2c4c
2 changed files with 37 additions and 1 deletions

View File

@@ -18,6 +18,9 @@ public interface PrivateGroupManager extends MessageTracker {
@NotNull
ClientId getClientId();
/** Adds a new private group. */
GroupId addPrivateGroup(String name) throws DbException;
/** Removes a dissolved private group. */
void removePrivateGroup(GroupId g) throws DbException;