]> git.mxchange.org Git - juser-login-core.git/commitdiff
re-added from juser-core as this is login relevant
authorRoland Häder <roland@mxchange.org>
Wed, 12 Jul 2017 19:26:18 +0000 (21:26 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 12 Jul 2017 19:26:18 +0000 (21:26 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/juserlogincore/events/user/password_change/ObservableUpdatedUserPasswordEvent.java [new file with mode: 0644]
src/org/mxchange/juserlogincore/events/user/password_change/UpdatedUserPasswordEvent.java [new file with mode: 0644]

diff --git a/src/org/mxchange/juserlogincore/events/user/password_change/ObservableUpdatedUserPasswordEvent.java b/src/org/mxchange/juserlogincore/events/user/password_change/ObservableUpdatedUserPasswordEvent.java
new file mode 100644 (file)
index 0000000..27faacf
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+ * Copyright (C) 2016, 2017 Roland Häder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.juserlogincore.events.user.password_change;
+
+import java.io.Serializable;
+import org.mxchange.jusercore.model.user.password_history.PasswordHistory;
+
+/**
+ * An interface for events being fired when a user updates personal data.
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+public interface ObservableUpdatedUserPasswordEvent extends Serializable {
+
+       /**
+        * Getter for password history entry
+        * <p>
+        * @return Password history entry
+        */
+       PasswordHistory getPasswordHistory ();
+
+}
diff --git a/src/org/mxchange/juserlogincore/events/user/password_change/UpdatedUserPasswordEvent.java b/src/org/mxchange/juserlogincore/events/user/password_change/UpdatedUserPasswordEvent.java
new file mode 100644 (file)
index 0000000..d669b28
--- /dev/null
@@ -0,0 +1,69 @@
+/*
+ * Copyright (C) 2016, 2017 Roland Häder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.juserlogincore.events.user.password_change;
+
+import java.text.MessageFormat;
+import org.mxchange.jusercore.model.user.password_history.PasswordHistory;
+
+/**
+ * An event being fired when the user has updated personal data
+ * <p>
+ * @author Roland Häder<roland@mxchange.org>
+ */
+public class UpdatedUserPasswordEvent implements ObservableUpdatedUserPasswordEvent {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 14_785_787_174_676_290L;
+
+       /**
+        * Updated user instance
+        */
+       private final PasswordHistory passwordHistory;
+
+       /**
+        * Constructor with updated user instance
+        * <p>
+        * @param passwordHistory Updated user instance
+        */
+       public UpdatedUserPasswordEvent (final PasswordHistory passwordHistory) {
+               // Is the user instance valid?
+               if (null == passwordHistory) {
+                       // Throw NPE
+                       throw new NullPointerException("passwordHistory is null"); //NOI18N
+               } else if (passwordHistory.getUserPasswordHistoryUser() == null) {
+                       // Throw NPE again
+                       throw new NullPointerException("passwordHistory.userPasswordHistoryUser is null"); //NOI18N
+               } else if (passwordHistory.getUserPasswordHistoryUser().getUserId() == null) {
+                       // Throw NPE again
+                       throw new NullPointerException("passwordHistory.userPasswordHistoryUser.userId is null"); //NOI18N
+               } else if (passwordHistory.getUserPasswordHistoryUser().getUserId() < 1) {
+                       // Invalid id number
+                       throw new IllegalArgumentException(MessageFormat.format("passwordHistory.userPasswordHistoryUser.userId={0} is invalid.", passwordHistory.getUserPasswordHistoryUser().getUserId())); //NOI18N
+               }
+
+               // Set it here
+               this.passwordHistory = passwordHistory;
+       }
+
+       @Override
+       public PasswordHistory getPasswordHistory () {
+               return this.passwordHistory;
+       }
+
+}