Class UserEmailVerificationBean
- java.lang.Object
-
- de.xima.fc.gui.common.bean.security.UserEmailVerificationBean
-
- All Implemented Interfaces:
IWelcomeConfirmView
,Serializable
@Named @ViewScoped public class UserEmailVerificationBean extends Object implements IWelcomeConfirmView, Serializable
Bean handling the verification of a user email address.- Since:
- 8.0.1
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserEmailVerificationBean(SessionDataBean sessionDataBean, String token)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
cancel()
Cancels the confirmation.void
confirm()
Executes the confirmation.String
getHeaderLabel()
String
getInfoText()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.gui.common.interfaces.view.IWelcomeConfirmView
getCancelBtnLabel, getConfirmBtnLabel
-
-
-
-
Constructor Detail
-
UserEmailVerificationBean
@Inject public UserEmailVerificationBean(SessionDataBean sessionDataBean, String token)
-
-
Method Detail
-
getHeaderLabel
public String getHeaderLabel()
- Specified by:
getHeaderLabel
in interfaceIWelcomeConfirmView
- Returns:
- a label for the header of the confirmation page.
-
getInfoText
public String getInfoText()
- Specified by:
getInfoText
in interfaceIWelcomeConfirmView
- Returns:
- an optional information text to be displayed on the confirmation page.
-
confirm
public void confirm()
Description copied from interface:IWelcomeConfirmView
Executes the confirmation.- Specified by:
confirm
in interfaceIWelcomeConfirmView
-
cancel
public void cancel()
Description copied from interface:IWelcomeConfirmView
Cancels the confirmation.- Specified by:
cancel
in interfaceIWelcomeConfirmView
-
-