mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
18 lines
420 B
Java
18 lines
420 B
Java
package org.briarproject.api.event;
|
|
|
|
import org.briarproject.api.contact.ContactId;
|
|
|
|
/** An event that is broadcast when a contact's subscriptions are updated. */
|
|
public class RemoteSubscriptionsUpdatedEvent extends Event {
|
|
|
|
private final ContactId contactId;
|
|
|
|
public RemoteSubscriptionsUpdatedEvent(ContactId contactId) {
|
|
this.contactId = contactId;
|
|
}
|
|
|
|
public ContactId getContactId() {
|
|
return contactId;
|
|
}
|
|
}
|