From 3ecc1a6ab8ca12acd8a1628fd9d73f97911a14b8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 9 Jul 2017 10:32:51 +0200 Subject: [PATCH] Return the updated user instance MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../model/user/resendlink/ResendLinkSessionBeanRemote.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/org/mxchange/jusercore/model/user/resendlink/ResendLinkSessionBeanRemote.java b/src/org/mxchange/jusercore/model/user/resendlink/ResendLinkSessionBeanRemote.java index aaa2b4a..dcd1332 100644 --- a/src/org/mxchange/jusercore/model/user/resendlink/ResendLinkSessionBeanRemote.java +++ b/src/org/mxchange/jusercore/model/user/resendlink/ResendLinkSessionBeanRemote.java @@ -41,12 +41,14 @@ public interface ResendLinkSessionBeanRemote extends Serializable { * @param user User instance * @param locale Locale instance * @param baseUrl Base URL + *

+ * @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; } -- 2.39.5