Add RemoteWipeActivatedEvent to activate wipe

This commit is contained in:
ameba23
2021-05-18 11:02:02 +02:00
parent 67015d7294
commit 29ef603122
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package org.briarproject.briar.api.remotewipe;
import org.briarproject.bramble.api.event.Event;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
import javax.annotation.concurrent.Immutable;
/**
* An event which is activated when a critical amount of
* remote wipe messages are received.
*/
@Immutable
@NotNullByDefault
public class RemoteWipeActivatedEvent extends Event {
}