]> git.mxchange.org Git - jjobs-lib.git/commitdiff
added business method resendConfirmationLink()
authorRoland Häder <roland@mxchange.org>
Tue, 17 May 2016 08:28:01 +0000 (10:28 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 25 May 2016 19:07:58 +0000 (21:07 +0200)
src/org/mxchange/jjobs/beans/resendlink/ResendLinkSessionBeanRemote.java

index 4b0a4f4dd2db3f4eee1626e1ecd92307c8853c79..43933c056962e72ce1098bed6910c4f2200a82a7 100644 (file)
@@ -17,7 +17,9 @@
 package org.mxchange.jjobs.beans.resendlink;
 
 import java.io.Serializable;
+import java.util.Locale;
 import javax.ejb.Remote;
+import org.mxchange.jusercore.model.user.User;
 
 /**
  * A remote interface for resending confirmation link.
@@ -27,4 +29,17 @@ import javax.ejb.Remote;
 @Remote
 public interface ResendLinkSessionBeanRemote extends Serializable {
 
+       /**
+        * Send confirmation link out to given user and returns a proper redirection
+        * target. The user's account status should be UNCONFIRMED and should
+        * contain a confirmation key. After confirmation the account's status
+        * should be changed to CONFIRMED and the key removed (nulled).
+        * <p>
+        * @param user User instance
+        * @param locale Locale instance
+        * <p>
+        * @return Redirection target
+        */
+       String resendConfirmationLink (final User user, final Locale locale);
+
 }