Package de.trustable.ca3s.core.service
Interface PipelineAttributeService
-
- All Known Implementing Classes:
PipelineAttributeServiceImpl
public interface PipelineAttributeServiceService Interface for managingPipelineAttribute.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" pipelineAttribute.List<PipelineAttribute>findAll()Get all the pipelineAttributes.Optional<PipelineAttribute>findOne(Long id)Get the "id" pipelineAttribute.PipelineAttributesave(PipelineAttribute pipelineAttribute)Save a pipelineAttribute.
-
-
-
Method Detail
-
save
PipelineAttribute save(PipelineAttribute pipelineAttribute)
Save a pipelineAttribute.- Parameters:
pipelineAttribute- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<PipelineAttribute> findAll()
Get all the pipelineAttributes.- Returns:
- the list of entities.
-
findOne
Optional<PipelineAttribute> findOne(Long id)
Get the "id" pipelineAttribute.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" pipelineAttribute.- Parameters:
id- the id of the entity.
-
-