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=3234d1902a3772eeddf641dea936702f4cc7504c;p=jjobs-lib.git added 2nd parameter baseUrl as EJBs cannot use FacesUtils --- diff --git a/src/org/mxchange/jjobs/beans/resendlink/ResendLinkSessionBeanRemote.java b/src/org/mxchange/jjobs/beans/resendlink/ResendLinkSessionBeanRemote.java index 43933c0..2e45cd9 100644 --- a/src/org/mxchange/jjobs/beans/resendlink/ResendLinkSessionBeanRemote.java +++ b/src/org/mxchange/jjobs/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); }