WIP
[demos/spring/data-jdbc] / src / main / java / de / juplo / boot / data / jdbc / UserEvent.java
diff --git a/src/main/java/de/juplo/boot/data/jdbc/UserEvent.java b/src/main/java/de/juplo/boot/data/jdbc/UserEvent.java
deleted file mode 100644 (file)
index fc8877c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-package de.juplo.boot.data.jdbc;
-
-import org.springframework.context.ApplicationEvent;
-
-
-public class UserEvent extends ApplicationEvent
-{
-    public enum Type { CREATED, LOGIN, LOGOUT, DELETED }
-
-    final Type type;
-    final String user;
-
-
-    public UserEvent(Object source, Type type, String user)
-    {
-        super(source);
-        this.type = type;
-        this.user = user;
-    }
-}