Package de.trustable.ca3s.core.service
Interface TimedElementNotificationService
-
- All Known Implementing Classes:
TimedElementNotificationServiceImpl
public interface TimedElementNotificationServiceService Interface for managingTimedElementNotification.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" timedElementNotification.List<TimedElementNotification>findAll()Get all the timedElementNotifications.Optional<TimedElementNotification>findOne(Long id)Get the "id" timedElementNotification.Optional<TimedElementNotification>partialUpdate(TimedElementNotification timedElementNotification)Partially updates a timedElementNotification.TimedElementNotificationsave(TimedElementNotification timedElementNotification)Save a timedElementNotification.TimedElementNotificationupdate(TimedElementNotification timedElementNotification)Updates a timedElementNotification.
-
-
-
Method Detail
-
save
TimedElementNotification save(TimedElementNotification timedElementNotification)
Save a timedElementNotification.- Parameters:
timedElementNotification- the entity to save.- Returns:
- the persisted entity.
-
update
TimedElementNotification update(TimedElementNotification timedElementNotification)
Updates a timedElementNotification.- Parameters:
timedElementNotification- the entity to update.- Returns:
- the persisted entity.
-
partialUpdate
Optional<TimedElementNotification> partialUpdate(TimedElementNotification timedElementNotification)
Partially updates a timedElementNotification.- Parameters:
timedElementNotification- the entity to update partially.- Returns:
- the persisted entity.
-
findAll
List<TimedElementNotification> findAll()
Get all the timedElementNotifications.- Returns:
- the list of entities.
-
findOne
Optional<TimedElementNotification> findOne(Long id)
Get the "id" timedElementNotification.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" timedElementNotification.- Parameters:
id- the id of the entity.
-
-