]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
redirection should take place in war project, so moved it here
authorRoland Häder <roland@mxchange.org>
Thu, 19 May 2016 15:39:54 +0000 (17:39 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 21 May 2016 10:48:57 +0000 (12:48 +0200)
src/java/org/mxchange/pizzaapplication/beans/resendlink/PizzaResendLinkWebSessionBean.java

index 435e28311b12d30510a64a686d0a0e306f0cbc71..761f643c1949e9873ee0822dad1a033039c83661 100644 (file)
@@ -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