]> git.mxchange.org Git - juser-lib.git/commitdiff
Continued with user passwords:
authorRoland Häder <roland@mxchange.org>
Wed, 3 Aug 2016 13:16:01 +0000 (15:16 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 3 Aug 2016 13:16:01 +0000 (15:16 +0200)
- added business method for changing user passwords. You should not use other methods here as they don't write an entry into user password history.

src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java

index c739151f739ad78c0fc5a6b5d5469581a8a1d370..1ebe7291459b21691992281072da4b3b3414a1c0 100644 (file)
@@ -24,6 +24,7 @@ import org.mxchange.jusercore.exceptions.UserNameAlreadyRegisteredException;
 import org.mxchange.jusercore.exceptions.UserNotFoundException;
 import org.mxchange.jusercore.exceptions.UserStatusConfirmedException;
 import org.mxchange.jusercore.exceptions.UserStatusLockedException;
+import org.mxchange.jusercore.exceptions.UserStatusUnconfirmedException;
 
 /**
  * An interface for user beans
@@ -33,6 +34,20 @@ import org.mxchange.jusercore.exceptions.UserStatusLockedException;
 @Remote
 public interface UserSessionBeanRemote extends Serializable {
 
+       /**
+        * Updates user's password (must be set encrypted before calling this
+        * method) and records the password change in user's password history.
+        * <p>
+        * @param user User instance with updated password
+        * <p>
+        * @return Updated user instance
+        *
+        * @throws UserNotFoundException If the user is not found
+        * @throws UserStatusUnconfirmedException If the user status is unconfirmed
+        * @throws UserStatusLockedException If the user status is locked
+        */
+       User updateUserPassword (final User user) throws UserNotFoundException, UserStatusUnconfirmedException, UserStatusLockedException;
+
        /**
         * Changes the user' account status to CONFIRMED if the status is
         * UNCONFIRMED, else propper exceptions are thrown.