Class OrientComposableStepRepository
- java.lang.Object
-
- com.chutneytesting.component.scenario.infra.OrientComposableStepRepository
-
- All Implemented Interfaces:
ExecutableStepRepository,ComposableStepRepository
@Repository public class OrientComposableStepRepository extends Object implements ComposableStepRepository, ExecutableStepRepository
-
-
Constructor Summary
Constructors Constructor Description OrientComposableStepRepository(OrientComponentDB orientComponentDB, ExecutableComposedStepMapper mapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteById(String recordId)List<ComposableStep>findAll()ComposableStepfindById(String recordId)ExecutableComposedStepfindExecutableById(String recordId)List<ParentStepId>findParents(String stepId)Stringsave(ComposableStep composableStep)
-
-
-
Constructor Detail
-
OrientComposableStepRepository
public OrientComposableStepRepository(OrientComponentDB orientComponentDB, ExecutableComposedStepMapper mapper)
-
-
Method Detail
-
save
public String save(ComposableStep composableStep)
- Specified by:
savein interfaceComposableStepRepository
-
findById
public ComposableStep findById(String recordId)
- Specified by:
findByIdin interfaceComposableStepRepository
-
findExecutableById
public ExecutableComposedStep findExecutableById(String recordId)
- Specified by:
findExecutableByIdin interfaceExecutableStepRepository
-
deleteById
public void deleteById(String recordId)
- Specified by:
deleteByIdin interfaceComposableStepRepository
-
findAll
public List<ComposableStep> findAll()
- Specified by:
findAllin interfaceComposableStepRepository
-
findParents
public List<ParentStepId> findParents(String stepId)
- Specified by:
findParentsin interfaceComposableStepRepository
-
-