Package de.trustable.ca3s.core.service
Interface PipelineService
-
- All Known Implementing Classes:
PipelineServiceImpl
public interface PipelineServiceService Interface for managingPipeline.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" pipeline.List<Pipeline>findAll()Get all the pipelines.Optional<Pipeline>findOne(Long id)Get the "id" pipeline.Pipelinesave(Pipeline pipeline)Save a pipeline.
-
-
-
Method Detail
-
save
Pipeline save(Pipeline pipeline)
Save a pipeline.- Parameters:
pipeline- the entity to save.- Returns:
- the persisted entity.
-
findOne
Optional<Pipeline> 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.
-
-