]> git.mxchange.org Git - juser-activity-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 21 Apr 2016 10:32:22 +0000 (12:32 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 21 Apr 2016 10:48:35 +0000 (12:48 +0200)
- added business method updateUserData() for updating user data.
- updateUserPersonalData() now returns updated (detached) user instance

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

index de178435179a7d1003659ed8887f0da7d5ef3deb..7065957526c315e05d0c3579ae32932b643ffe03 100644 (file)
@@ -31,6 +31,15 @@ import org.mxchange.jusercore.exceptions.UserNotFoundException;
 @Remote
 public interface UserSessionBeanRemote extends Serializable {
 
+       /**
+        * Updates entiity from given user instance and returns updated instance.
+        * <p>
+        * @param user User instance to update
+        * <p>
+        * @return Updated user instance
+        */
+       User updateUserData (final User user);
+
        /**
         * Find user by given user id and returns fetched instance. If the user is
         * not found, an exception is thrown.
@@ -141,7 +150,9 @@ public interface UserSessionBeanRemote extends Serializable {
         * Updates given user instance in database
         * <p>
         * @param user User instance to update
+        * <p>
+        * @return Updated user instance (detached)
         */
-       void updateUserPersonalData (final User user);
+       User updateUserPersonalData (final User user);
 
 }