From 2fa4a044911eb6ef61832d41b0c3dd07a16598b4 Mon Sep 17 00:00:00 2001 From: Petr Ilin Date: Mon, 28 Mar 2022 14:48:28 +0300 Subject: Events fixes, more events --- .../limboauth/event/AuthUnregisterEvent.java | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/main/java/net/elytrium/limboauth/event/AuthUnregisterEvent.java (limited to 'src/main/java/net/elytrium/limboauth/event/AuthUnregisterEvent.java') diff --git a/src/main/java/net/elytrium/limboauth/event/AuthUnregisterEvent.java b/src/main/java/net/elytrium/limboauth/event/AuthUnregisterEvent.java new file mode 100644 index 0000000..7450479 --- /dev/null +++ b/src/main/java/net/elytrium/limboauth/event/AuthUnregisterEvent.java @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2021 Elytrium + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package net.elytrium.limboauth.event; + +public class AuthUnregisterEvent { + + private final String nickname; + + public AuthUnregisterEvent(String nickname) { + this.nickname = nickname; + } + + public String getNickname() { + return this.nickname; + } + +} -- cgit