From: Roland Häder Date: Thu, 19 May 2016 15:39:54 +0000 (+0200) Subject: redirection should take place in war project, so moved it here X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f32b2b12df0a19f1fd120c83a849ff40863b66c4;p=pizzaservice-war.git redirection should take place in war project, so moved it here --- diff --git a/src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkWebSessionBean.java b/src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkWebSessionBean.java index 435e2831..761f643c 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkWebSessionBean.java +++ b/src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkWebSessionBean.java @@ -105,13 +105,13 @@ public class PizzaResendLinkWebSessionBean extends BasePizzaController implement String baseUrl = FacesUtils.generateBaseUrl(); // Call EJB and return redirect target - String redirectTarget = this.emailBean.resendConfirmationLink(user, locale, baseUrl); + this.emailBean.resendConfirmationLink(user, locale, baseUrl); // Clear this bean this.clear(); // Return redirect target - return redirectTarget; + return "resend_done"; //NOI18N } @Override