In the standard Apache Isis Programming Model, typically corresponds to applying the @Wizard annotation at the class level.
383384385386387388389390391392
@Override public boolean accept(ObjectAction input) { if(objectSpecification == null) { return false; } final WizardFacet wizardFacet = objectSpecification.getFacet(WizardFacet.class); return wizardFacet != null && wizardFacet.isWizardAction(input); } }; }