]> git.mxchange.org Git - juser-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 5 Sep 2017 20:17:33 +0000 (22:17 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 5 Sep 2017 20:17:33 +0000 (22:17 +0200)
- let's have UserNotFoundException be thrown when the provided user instance
  was not found by persistence provider

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java

index 15ede4b4dcbad41d10e6490d3fa6c84fc154e7a0..5c223c7a453bf7fd2a0ec9998626484ce6cdb17d 100644 (file)
@@ -37,7 +37,7 @@ 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
+        * @param user    User instance with updated password
         * @param baseUrl Base URL for all links
         * <p>
         * @return Password history entry with updated user instance
@@ -52,7 +52,7 @@ public interface UserSessionBeanRemote extends Serializable {
         * Changes the user' account status to CONFIRMED if the status is
         * UNCONFIRMED, else proper exceptions are thrown.
         * <p>
-        * @param user Unconfirmed user instance
+        * @param user    Unconfirmed user instance
         * @param baseUrl Base URL
         * <p>
         * @return Updated user instance
@@ -120,15 +120,17 @@ public interface UserSessionBeanRemote extends Serializable {
         * @param user Initial User instance
         * <p>
         * @return Prepared User instance
+        * <p>
+        * @throws UserNotFoundException If the user was not found
         */
-       User fillUserData (final User user);
+       User fillUserData (final User user) throws UserNotFoundException;
 
        /**
         * Some "getter" for a full user name list
         * <p>
         * @return User name list
         */
-       List<String> getUserNameList ();
+       List<String> allUserNames ();
 
        /**
         * Some "getter" for a full email address list