]> git.mxchange.org Git - juser-lib.git/commitdiff
Return the updated user instance
authorRoland Häder <roland@mxchange.org>
Sun, 9 Jul 2017 08:32:51 +0000 (10:32 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 9 Jul 2017 08:32:51 +0000 (10:32 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jusercore/model/user/resendlink/ResendLinkSessionBeanRemote.java

index aaa2b4a2f6cfb4d9a81852620c9444dab99d15f3..dcd133231bd74a00d6650e59c11a7f84bee923f8 100644 (file)
@@ -41,12 +41,14 @@ public interface ResendLinkSessionBeanRemote extends Serializable {
         * @param user    User instance
         * @param locale  Locale instance
         * @param baseUrl Base URL
+        * <p>
+        * @return Updated (aka "managed") instance with new confirmation key
         *
         * @throws UserNotFoundException If the user's account was not found
         * @throws UserStatusLockedException If the user's account is locked
         * @throws UserStatusConfirmedException If the user's account is already
         * confirmed
         */
-       void resendConfirmationLink (final User user, final Locale locale, final String baseUrl) throws UserNotFoundException, UserStatusLockedException, UserStatusConfirmedException;
+       User resendConfirmationLink (final User user, final Locale locale, final String baseUrl) throws UserNotFoundException, UserStatusLockedException, UserStatusConfirmedException;
 
 }