Remove account deletion on the server

This commit is contained in:
2020-10-24 12:19:11 +02:00
committed by kske
parent f67ca1d61d
commit e5659c1da1
15 changed files with 75 additions and 100 deletions

View File

@ -1,22 +0,0 @@
package envoy.event.contact;
import envoy.event.Event;
/**
* Signifies the deletion of an account.
*
* @author Leon Hofmeister
* @since Envoy Common v0.3-beta
*/
public class AccountDeletion extends Event<Long> {
private static final long serialVersionUID = 1L;
/**
* @param value the ID of the contact that was deleted
* @since Envoy Common v0.3-beta
*/
public AccountDeletion(Long value) {
super(value);
}
}