Package org.cyclos.services.system
Interface CustomWizardStepService
-
- All Superinterfaces:
CRUDService<CustomWizardStepDTO,CustomWizardStepData,CustomWizardStepDataParams>,Service
- All Known Subinterfaces:
CustomWizardStepServiceLocal
- All Known Implementing Classes:
CustomWizardStepServiceImpl,CustomWizardStepServiceSecurity
public interface CustomWizardStepService extends CRUDService<CustomWizardStepDTO,CustomWizardStepData,CustomWizardStepDataParams>
Service for managing custom wizard seps
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<CustomWizardStepVO>list(CustomWizardVO wizard)Lists all steps for the given wizardvoidsaveOrder(@NotNull List<Long> ids)Saves the order according to the given steps ids.-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
list
List<CustomWizardStepVO> list(CustomWizardVO wizard) throws FrameworkException
Lists all steps for the given wizard- Throws:
FrameworkException
-
saveOrder
void saveOrder(@NotNull @NotNull List<Long> ids) throws FrameworkExceptionSaves the order according to the given steps ids. All must belong to the same wizard- Throws:
FrameworkException
-
-