Interface IWelcomeConfirmView
-
- All Known Implementing Classes:
UserEmailPrimaryChangeBean
,UserEmailVerificationBean
,UserIdentityRemovalBean
,UserProfileMfaRemovalBean
public interface IWelcomeConfirmView
Common interface for GUI models that represent a confirmation dialog within the welcome page (/WEB-INF/xfc/templates/welcome/welcome.xhtml
).- Since:
- 8.0.1
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
cancel()
Cancels the confirmation.void
confirm()
Executes the confirmation.default String
getCancelBtnLabel()
default String
getConfirmBtnLabel()
String
getHeaderLabel()
default String
getInfoText()
-
-
-
Method Detail
-
getHeaderLabel
String getHeaderLabel()
- Returns:
- a label for the header of the confirmation page.
-
getInfoText
@Nullable default String getInfoText()
- Returns:
- an optional information text to be displayed on the confirmation page.
-
getConfirmBtnLabel
@Nullable default String getConfirmBtnLabel()
- Returns:
- an optional label for the confirm button on the confirmation page. If no label is returned then the default label will be displayed.
-
getCancelBtnLabel
@Nullable default String getCancelBtnLabel()
- Returns:
- an optional label for the confirm button on the confirmation page. If no label is returned then the default label will be displayed.
-
confirm
void confirm()
Executes the confirmation.
-
cancel
void cancel()
Cancels the confirmation.
-
-