]> git.mxchange.org Git - juser-activity-lib.git/commitdiff
updated jar(s)
authorRoland Häder <roland@mxchange.org>
Thu, 11 Aug 2016 10:26:49 +0000 (12:26 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 11 Aug 2016 10:38:10 +0000 (12:38 +0200)
lib/juser-core.jar
src/org/mxchange/jusercore/model/user/AdminUserSessionBeanRemote.java

index bbd9f9354dc6291ed18eca8ed2b20bc8d0dd049e..9fd9cc6d60db894a466a3b823e30aff5d4b23ed3 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index 1f9294401028439681ad775e190e600912aaa597..2b2ccec04ed49d5c193618a62fa6a652381b2e95 100644 (file)
@@ -40,11 +40,13 @@ public interface AdminUserSessionBeanRemote extends Serializable {
         * @param userLockReason Lock reason
         * @param baseUrl Base URL for all URLs
         * <p>
+        * @return Updated (and detached) user instance
+        * <p>
         * @throws UserStatusLockedException The account is already locked
         * @throws UserStatusUnconfirmedException The account is not confirmed
         * @throws UserNotFoundException The user account is not found
         */
-       void lockUserAccount (final User user, final String userLockReason, final String baseUrl) throws UserStatusLockedException, UserStatusUnconfirmedException, UserNotFoundException;
+       User lockUserAccount (final User user, final String userLockReason, final String baseUrl) throws UserStatusLockedException, UserStatusUnconfirmedException, UserNotFoundException;
 
        /**
         * Unlocks given user account
@@ -52,11 +54,13 @@ public interface AdminUserSessionBeanRemote extends Serializable {
         * @param user User account to be unlocked, must be status LOCKED
         * @param baseUrl Base URL for all URLs
         * <p>
+        * @return Updated (and detached) user instance
+        * <p>
         * @throws UserStatusConfirmedException The account is already locked
         * @throws UserStatusUnconfirmedException The account is not confirmed
         * @throws UserNotFoundException The user account is not found
         */
-       void unlockUserAccount (final User user, final String baseUrl) throws UserStatusConfirmedException, UserStatusUnconfirmedException, UserNotFoundException;
+       User unlockUserAccount (final User user, final String baseUrl) throws UserStatusConfirmedException, UserStatusUnconfirmedException, UserNotFoundException;
 
        /**
         * Creates the user instance and links it with the set contact instance