]> git.mxchange.org Git - jfinancials-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 12:30:20 +0000 (14:30 +0200)
src/java/org/mxchange/addressbook/beans/resendlink/AddressbookResendLinkWebSessionBean.java

index 7de6945e398ef0e9ba99f2b1e144c59f0e4318e9..997ab915b056ecc26ce934eb7b1638b6095d1d57 100644 (file)
@@ -105,13 +105,13 @@ public class AddressbookResendLinkWebSessionBean extends BaseAddressbookControll
                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