Package org.cyclos.services.system
Interface CustomOperationActionService
-
- All Superinterfaces:
CRUDService<CustomOperationActionDTO,CustomOperationActionData,CustomOperationActionDataParams>,Service
- All Known Subinterfaces:
CustomOperationActionServiceLocal
public interface CustomOperationActionService extends CRUDService<CustomOperationActionDTO,CustomOperationActionData,CustomOperationActionDataParams>
Service for managing custom operations actions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<CustomOperationActionVO>list(CustomOperationVO ownerOperation)Lists all available custom operations actions for the given custom operationvoidsaveOrder(@NotNull List<Long> ids)Updates the order according to the given ids sequence-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
list
List<CustomOperationActionVO> list(CustomOperationVO ownerOperation) throws FrameworkException
Lists all available custom operations actions for the given custom operation- Throws:
FrameworkException
-
saveOrder
void saveOrder(@NotNull @NotNull List<Long> ids) throws FrameworkExceptionUpdates the order according to the given ids sequence- Throws:
FrameworkException
-
-