]> git.mxchange.org Git - juser-core.git/commitdiff
added event when a user updated personal data
authorRoland Häder <roland@mxchange.org>
Thu, 21 Apr 2016 11:27:41 +0000 (13:27 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 21 Apr 2016 11:31:53 +0000 (13:31 +0200)
src/org/mxchange/jusercore/events/user/update/AdminUpdatedUserDataEvent.java
src/org/mxchange/jusercore/events/user/update/UpdatedUserPersonalDataEvent.java [new file with mode: 0644]
src/org/mxchange/jusercore/events/user/update/UserUpdatedPersonalDataEvent.java [new file with mode: 0644]

index b1d675ba880d8387941885492284aa4562f5e02e..5b322669090e329971801076550a5b13085d212c 100644 (file)
@@ -27,7 +27,7 @@ import org.mxchange.jusercore.model.user.User;
 public interface AdminUpdatedUserDataEvent extends Serializable {\r
 \r
        /**\r
-        * Getter for added user instance\r
+        * Getter for updated user instance\r
         * <p>\r
         * @return Added user instance\r
         */\r
diff --git a/src/org/mxchange/jusercore/events/user/update/UpdatedUserPersonalDataEvent.java b/src/org/mxchange/jusercore/events/user/update/UpdatedUserPersonalDataEvent.java
new file mode 100644 (file)
index 0000000..93c849a
--- /dev/null
@@ -0,0 +1,35 @@
+/*\r
+ * Copyright (C) 2016 Roland Haeder<roland@mxchange.org>\r
+ *\r
+ * This program is free software: you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation, either version 3 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
+ */\r
+package org.mxchange.jusercore.events.user.update;\r
+\r
+import org.mxchange.jusercore.model.user.User;\r
+\r
+/**\r
+ * An interface for events being fired when a user updates personal data.\r
+ * <p>\r
+ * @author Roland Haeder<roland@mxchange.org>\r
+ */\r
+public interface UpdatedUserPersonalDataEvent {\r
+\r
+       /**\r
+        * Getter for updated user instance\r
+        * <p>\r
+        * @return Added user instance\r
+        */\r
+       User getUpdatedUser ();\r
+\r
+}\r
diff --git a/src/org/mxchange/jusercore/events/user/update/UserUpdatedPersonalDataEvent.java b/src/org/mxchange/jusercore/events/user/update/UserUpdatedPersonalDataEvent.java
new file mode 100644 (file)
index 0000000..e78e595
--- /dev/null
@@ -0,0 +1,66 @@
+/*\r
+ * Copyright (C) 2016 Roland Haeder<roland@mxchange.org>\r
+ *\r
+ * This program is free software: you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation, either version 3 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
+ */\r
+package org.mxchange.jusercore.events.user.update;\r
+\r
+import java.text.MessageFormat;\r
+import org.mxchange.jusercore.model.user.User;\r
+\r
+/**\r
+ * An event being fired when the user has updated personal data\r
+ * <p>\r
+ * @author Roland Haeder<roland@mxchange.org>\r
+ */\r
+public class UserUpdatedPersonalDataEvent implements UpdatedUserPersonalDataEvent {\r
+\r
+       /**\r
+        * Serial number\r
+        */\r
+       private static final long serialVersionUID = 14_785_787_174_676_290L;\r
+\r
+       /**\r
+        * Updated user instance\r
+        */\r
+       private final User updatedUser;\r
+\r
+       /**\r
+        * Constructor with updated user instance\r
+        * <p>\r
+        * @param updatedUser Updated user instance\r
+        */\r
+       public UserUpdatedPersonalDataEvent (final User updatedUser) {\r
+               // Is the user instance valid?\r
+               if (null == updatedUser) {\r
+                       // Throw NPE\r
+                       throw new NullPointerException("updatedUser is null"); //NOI18N\r
+               } else if (updatedUser.getUserId() == null) {\r
+                       // Throw NPE again\r
+                       throw new NullPointerException("updatedUser.userId is null"); //NOI18N\r
+               } else if (updatedUser.getUserId() < 1) {\r
+                       // Invalid id number\r
+                       throw new IllegalArgumentException(MessageFormat.format("updatedUser.userId={0} is invalid.", updatedUser.getUserId())); //NOI18N\r
+               }\r
+\r
+               // Set it here\r
+               this.updatedUser = updatedUser;\r
+       }\r
+\r
+       @Override\r
+       public User getUpdatedUser () {\r
+               return this.updatedUser;\r
+       }\r
+\r
+}\r