use of com.evolveum.midpoint.web.component.wizard.WizardStep in project midpoint by Evolveum.
the class PageResourceWizard method isCurrentStepComplete.
public boolean isCurrentStepComplete() {
Wizard wizard = (Wizard) get(ID_WIZARD);
WizardStep activeStep = (WizardStep) wizard.getModelObject().getActiveStep();
return activeStep == null || activeStep.isComplete();
}
Aggregations