Package de.trustable.ca3s.core.service
Interface CRLExpirationNotificationService
-
- All Known Implementing Classes:
CRLExpirationNotificationServiceImpl
public interface CRLExpirationNotificationServiceService Interface for managingCRLExpirationNotification.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<CRLExpirationNotification>createByCertificateId(Long certificateId)voiddelete(Long id)Delete the "id" cRLExpirationNotification.List<CRLExpirationNotification>findAll()Get all the cRLExpirationNotifications.Optional<CRLExpirationNotification>findOne(Long id)Get the "id" cRLExpirationNotification.Optional<CRLExpirationNotification>partialUpdate(CRLExpirationNotification cRLExpirationNotification)Partially updates a cRLExpirationNotification.CRLExpirationNotificationsave(CRLExpirationNotification cRLExpirationNotification)Save a cRLExpirationNotification.CRLExpirationNotificationupdate(CRLExpirationNotification cRLExpirationNotification)Updates a cRLExpirationNotification.
-
-
-
Method Detail
-
createByCertificateId
List<CRLExpirationNotification> createByCertificateId(Long certificateId)
-
save
CRLExpirationNotification save(CRLExpirationNotification cRLExpirationNotification)
Save a cRLExpirationNotification.- Parameters:
cRLExpirationNotification- the entity to save.- Returns:
- the persisted entity.
-
update
CRLExpirationNotification update(CRLExpirationNotification cRLExpirationNotification)
Updates a cRLExpirationNotification.- Parameters:
cRLExpirationNotification- the entity to update.- Returns:
- the persisted entity.
-
partialUpdate
Optional<CRLExpirationNotification> partialUpdate(CRLExpirationNotification cRLExpirationNotification)
Partially updates a cRLExpirationNotification.- Parameters:
cRLExpirationNotification- the entity to update partially.- Returns:
- the persisted entity.
-
findAll
List<CRLExpirationNotification> findAll()
Get all the cRLExpirationNotifications.- Returns:
- the list of entities.
-
findOne
Optional<CRLExpirationNotification> findOne(Long id)
Get the "id" cRLExpirationNotification.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" cRLExpirationNotification.- Parameters:
id- the id of the entity.
-
-