mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
19 lines
410 B
Java
19 lines
410 B
Java
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;
|
|
}
|
|
}
|