From f5520f2f16bd79f85a2ef86856aa2cfb2b6e59d9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 29 Aug 2016 17:47:23 +0200 Subject: [PATCH] Continued a bit: - added base URL for upcoming email delivery --- .../mxchange/jusercore/model/user/UserSessionBeanRemote.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java b/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java index 8509e4a..f64acb5 100644 --- a/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java +++ b/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java @@ -38,6 +38,7 @@ public interface UserSessionBeanRemote extends Serializable { * method) and records the password change in user's password history. *

* @param user User instance with updated password + * @param baseUrl Base URL for all links *

* @return Password history entry with updated user instance * @@ -45,7 +46,7 @@ public interface UserSessionBeanRemote extends Serializable { * @throws UserStatusUnconfirmedException If the user status is unconfirmed * @throws UserStatusLockedException If the user status is locked */ - PasswordHistory updateUserPassword (final User user) throws UserNotFoundException, UserStatusUnconfirmedException, UserStatusLockedException; + PasswordHistory updateUserPassword (final User user, final String baseUrl) throws UserNotFoundException, UserStatusUnconfirmedException, UserStatusLockedException; /** * Changes the user' account status to CONFIRMED if the status is -- 2.39.5