Implement BlogSharingManager

This commit is contained in:
str4d
2016-06-16 05:21:57 +00:00
parent 9ae64124d3
commit 13e3eec6b3
11 changed files with 757 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package org.briarproject.api.event;
import org.briarproject.api.contact.ContactId;
public class BlogInvitationResponseReceivedEvent extends InvitationResponseReceivedEvent {
private final String blogTitle;
public BlogInvitationResponseReceivedEvent(String blogTitle,
ContactId contactId) {
super(contactId);
this.blogTitle = blogTitle;
}
public String getBlogTitle() {
return blogTitle;
}
}