mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 11:49:04 +01:00
Added a factory method for unrestricted groups.
This commit is contained in:
@@ -4,5 +4,9 @@ import java.io.IOException;
|
||||
|
||||
public interface GroupFactory {
|
||||
|
||||
/** Creates an unrestricted group. */
|
||||
Group createGroup(String name) throws IOException;
|
||||
|
||||
/** Creates a restricted group. */
|
||||
Group createGroup(String name, byte[] publicKey) throws IOException;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user