mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
19 lines
382 B
Java
19 lines
382 B
Java
package org.briarproject.api.event;
|
|
|
|
import org.briarproject.api.contact.ContactId;
|
|
|
|
/** An event that is broadcast when a contact is verified. */
|
|
public class ContactVerifiedEvent extends Event {
|
|
|
|
private final ContactId contactId;
|
|
|
|
public ContactVerifiedEvent(ContactId contactId) {
|
|
this.contactId = contactId;
|
|
}
|
|
|
|
public ContactId getContactId() {
|
|
return contactId;
|
|
}
|
|
|
|
}
|