Package de.trustable.ca3s.core.service
Interface PipelineViewService
-
- All Known Implementing Classes:
PipelineViewServiceImpl
public interface PipelineViewServiceService Interface for managingPipelineView.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" pipeline.List<PipelineView>findAll()Get all the pipelines.Optional<PipelineView>findOne(Long id)Get the "id" pipeline.PipelineViewsave(PipelineView pipeline)Save a pipeline.
-
-
-
Method Detail
-
save
PipelineView save(PipelineView pipeline)
Save a pipeline.- Parameters:
pipeline- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<PipelineView> findAll()
Get all the pipelines.- Returns:
- the list of entities.
-
findOne
Optional<PipelineView> findOne(Long id)
Get the "id" pipeline.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" pipeline.- Parameters:
id- the id of the entity.
-
-