mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Create RemoteWipeReceivedEvent
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package org.briarproject.briar.api.remotewipe;
|
||||
|
||||
import org.briarproject.bramble.api.contact.ContactId;
|
||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||
import org.briarproject.briar.api.conversation.event.ConversationMessageReceivedEvent;
|
||||
|
||||
import jdk.nashorn.internal.ir.annotations.Immutable;
|
||||
|
||||
@Immutable
|
||||
@NotNullByDefault
|
||||
public class RemoteWipeReceivedEvent
|
||||
extends ConversationMessageReceivedEvent<RemoteWipeMessageHeader> {
|
||||
|
||||
public RemoteWipeReceivedEvent(RemoteWipeMessageHeader messageHeader,
|
||||
ContactId contactId) {
|
||||
super(messageHeader, contactId);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user