mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
18 lines
379 B
Java
18 lines
379 B
Java
package org.briarproject.api.event;
|
|
|
|
import org.briarproject.api.identity.AuthorId;
|
|
|
|
/** An event that is broadcast when a local pseudonym is added. */
|
|
public class LocalAuthorAddedEvent extends Event {
|
|
|
|
private final AuthorId authorId;
|
|
|
|
public LocalAuthorAddedEvent(AuthorId authorId) {
|
|
this.authorId = authorId;
|
|
}
|
|
|
|
public AuthorId getAuthorId() {
|
|
return authorId;
|
|
}
|
|
}
|