mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
Add a stub for a GroupInvitationManager
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package org.briarproject.api.privategroup.invitation;
|
||||
|
||||
import org.briarproject.api.contact.Contact;
|
||||
import org.briarproject.api.sharing.InvitationItem;
|
||||
import org.briarproject.api.sharing.Shareable;
|
||||
|
||||
public class GroupInvitationItem extends InvitationItem {
|
||||
|
||||
private final Contact creator;
|
||||
|
||||
public GroupInvitationItem(Shareable shareable, boolean subscribed,
|
||||
Contact creator) {
|
||||
super(shareable, subscribed);
|
||||
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
public Contact getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user