]> git.mxchange.org Git - juser-login-lib.git/blobdiff - src/org/mxchange/jusercore/model/user/resendlink/ResendLinkSessionBeanRemote.java
Return the updated user instance
[juser-login-lib.git] / 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;
 
 }