Class BPMNProcessInfoServiceImpl
- java.lang.Object
-
- de.trustable.ca3s.core.service.impl.BPMNProcessInfoServiceImpl
-
- All Implemented Interfaces:
BPMNProcessInfoService
@Service @Transactional public class BPMNProcessInfoServiceImpl extends Object implements BPMNProcessInfoService
Service Implementation for managingBPMNProcessInfo.
-
-
Constructor Summary
Constructors Constructor Description BPMNProcessInfoServiceImpl(BPMNProcessInfoRepository bPMNProcessInfoRepository)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(Long id)Delete the bPMNProcessInfo by id.List<BPMNProcessInfo>findAll()Get all the bPMNProcessInfos.Optional<BPMNProcessInfo>findOne(Long id)Get one bPMNProcessInfo by id.BPMNProcessInfosave(BPMNProcessInfo bPMNProcessInfo)Save a bPMNProcessInfo.
-
-
-
Constructor Detail
-
BPMNProcessInfoServiceImpl
public BPMNProcessInfoServiceImpl(BPMNProcessInfoRepository bPMNProcessInfoRepository)
-
-
Method Detail
-
save
public BPMNProcessInfo save(BPMNProcessInfo bPMNProcessInfo)
Save a bPMNProcessInfo.- Specified by:
savein interfaceBPMNProcessInfoService- Parameters:
bPMNProcessInfo- the entity to save.- Returns:
- the persisted entity.
-
findAll
@Transactional(readOnly=true) public List<BPMNProcessInfo> findAll()
Get all the bPMNProcessInfos.- Specified by:
findAllin interfaceBPMNProcessInfoService- Returns:
- the list of entities.
-
findOne
@Transactional(readOnly=true) public Optional<BPMNProcessInfo> findOne(Long id)
Get one bPMNProcessInfo by id.- Specified by:
findOnein interfaceBPMNProcessInfoService- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
public void delete(Long id)
Delete the bPMNProcessInfo by id.- Specified by:
deletein interfaceBPMNProcessInfoService- Parameters:
id- the id of the entity.
-
-