Package de.trustable.ca3s.core.service
Interface BPMNProcessInfoService
-
- All Known Implementing Classes:
BPMNProcessInfoServiceImpl
public interface BPMNProcessInfoServiceService Interface for managingBPMNProcessInfo.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" bPMNProcessInfo.List<BPMNProcessInfo>findAll()Get all the bPMNProcessInfos.Optional<BPMNProcessInfo>findOne(Long id)Get the "id" bPMNProcessInfo.BPMNProcessInfosave(BPMNProcessInfo bPMNProcessInfo)Save a bPMNProcessInfo.
-
-
-
Method Detail
-
save
BPMNProcessInfo save(BPMNProcessInfo bPMNProcessInfo)
Save a bPMNProcessInfo.- Parameters:
bPMNProcessInfo- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<BPMNProcessInfo> findAll()
Get all the bPMNProcessInfos.- Returns:
- the list of entities.
-
findOne
Optional<BPMNProcessInfo> findOne(Long id)
Get the "id" bPMNProcessInfo.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" bPMNProcessInfo.- Parameters:
id- the id of the entity.
-
-