mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 03:39:05 +01:00
20 lines
511 B
Java
20 lines
511 B
Java
package org.briarproject.api.event;
|
|
|
|
import org.briarproject.api.blogs.BlogInvitationResponse;
|
|
import org.briarproject.api.contact.ContactId;
|
|
|
|
public class BlogInvitationResponseReceivedEvent extends InvitationResponseReceivedEvent {
|
|
|
|
private final String blogTitle;
|
|
|
|
public BlogInvitationResponseReceivedEvent(String blogTitle,
|
|
ContactId contactId, BlogInvitationResponse response) {
|
|
super(contactId, response);
|
|
this.blogTitle = blogTitle;
|
|
}
|
|
|
|
public String getBlogTitle() {
|
|
return blogTitle;
|
|
}
|
|
}
|