From: Roland Häder Date: Wed, 18 May 2016 12:42:17 +0000 (+0200) Subject: added 2nd parameter baseUrl as EJBs cannot use FacesUtils X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4a59270793f4d0d1f99e28936da3b408733a5e55;p=pizzaservice-lib.git added 2nd parameter baseUrl as EJBs cannot use FacesUtils --- diff --git a/src/org/mxchange/pizzaapplication/beans/resendlink/ResendLinkSessionBeanRemote.java b/src/org/mxchange/pizzaapplication/beans/resendlink/ResendLinkSessionBeanRemote.java index cd831c2..da7722f 100644 --- a/src/org/mxchange/pizzaapplication/beans/resendlink/ResendLinkSessionBeanRemote.java +++ b/src/org/mxchange/pizzaapplication/beans/resendlink/ResendLinkSessionBeanRemote.java @@ -37,9 +37,10 @@ public interface ResendLinkSessionBeanRemote extends Serializable { *

* @param user User instance * @param locale Locale instance + * @param baseUrl Base URL *

* @return Redirection target */ - String resendConfirmationLink (final User user, final Locale locale); + String resendConfirmationLink (final User user, final Locale locale, final String baseUrl); }