Interface WizardStep
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractConfigurationStepPanel,AbstractFormWizardStepPanel,AbstractValueFormResourceWizardStepPanel,AbstractWizardStepPanel,AccessApplicationRoleStepPanel,AccessApplicationStepPanel,ActionStepPanel,ActivationMappingStepPanel,AdministrativeStatusStepPanel,AssociationStepPanel,AttributeInboundStepPanel,AttributeOutboundStepPanel,BasicInformationStepPanel,BasicInformationStepPanel,BasicSettingResourceObjectTypeStepPanel,BasicWizardStepPanel,ConfigurationStepPanel,ConstructionGroupStepPanel,ConstructionOutboundBasicStepPanel,ConstructionOutboundMappingsStepPanel,ConstructionResourceObjectTypeStepPanel,ConstructionResourceStepPanel,DelineationResourceObjectTypeStepPanel,DiscoveryStepPanel,ExistenceStepPanel,FocusResourceObjectTypeStepPanel,LimitationsStepPanel,LockoutStatusStepPanel,MainConfigurationStepPanel,MultiSelectTileWizardStepPanel,PartialConfigurationStepPanel,PasswordStepPanel,PersonOfInterestPanel,ReactionMainSettingStepPanel,ReactionOptionalSettingStepPanel,RelationPanel,RoleCatalogPanel,SelectObjectClassesStepPanel,SelectTileWizardStepPanel,ShoppingCartPanel,SingleTileWizardStepPanel,ValidFromStepPanel,ValidToStepPanel,WizardStepPanel
public interface WizardStep extends Serializable
Created by Viliam Repan (lazyman).
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default StringappendCssToWizard()default voidapplyState()default org.apache.wicket.ComponentcreateHeaderContent(String id)default VisibleEnableBehaviourgetBackBehaviour()default VisibleEnableBehaviourgetHeaderBehaviour()default VisibleEnableBehaviourgetNextBehaviour()default StringgetStepId()default VisibleEnableBehaviourgetStepsBehaviour()default org.apache.wicket.model.IModel<String>getTitle()default org.apache.wicket.model.IModel<List<Badge>>getTitleBadges()default voidinit(WizardModel wizard)default org.apache.wicket.model.IModel<Boolean>isStepVisible()default booleanonBackPerformed(org.apache.wicket.ajax.AjaxRequestTarget target)default booleanonNextPerformed(org.apache.wicket.ajax.AjaxRequestTarget target)
-
-
-
Method Detail
-
init
default void init(WizardModel wizard)
-
getStepId
default String getStepId()
-
appendCssToWizard
default String appendCssToWizard()
-
createHeaderContent
default org.apache.wicket.Component createHeaderContent(String id)
-
getTitle
default org.apache.wicket.model.IModel<String> getTitle()
-
getStepsBehaviour
default VisibleEnableBehaviour getStepsBehaviour()
-
getHeaderBehaviour
default VisibleEnableBehaviour getHeaderBehaviour()
-
getBackBehaviour
default VisibleEnableBehaviour getBackBehaviour()
-
getNextBehaviour
default VisibleEnableBehaviour getNextBehaviour()
-
onBackPerformed
default boolean onBackPerformed(org.apache.wicket.ajax.AjaxRequestTarget target)
- Returns:
- flag whether default "back" button action should be executed. If true, default behaviour of back button will be executed as well If false, only code in this method will be executed
-
onNextPerformed
default boolean onNextPerformed(org.apache.wicket.ajax.AjaxRequestTarget target)
- Returns:
- flag whether default "next" button action should be executed. If true, default behaviour of next button will be executed as well If false, only code in this method will be executed
-
applyState
default void applyState()
-
isStepVisible
default org.apache.wicket.model.IModel<Boolean> isStepVisible()
-
-