Interface ComposableStepRepository
-
- All Known Implementing Classes:
OrientComposableStepRepository
public interface ComposableStepRepository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteById(String stepId)List<ComposableStep>findAll()ComposableStepfindById(String recordId)List<ParentStepId>findParents(String stepId)Stringsave(ComposableStep step)
-
-
-
Method Detail
-
save
String save(ComposableStep step)
-
findById
ComposableStep findById(String recordId)
-
findParents
List<ParentStepId> findParents(String stepId)
-
findAll
List<ComposableStep> findAll()
-
deleteById
void deleteById(String stepId)
-
-