Package de.trustable.ca3s.core.service
Interface RequestAttributeValueService
-
- All Known Implementing Classes:
RequestAttributeValueServiceImpl
public interface RequestAttributeValueServiceService Interface for managingRequestAttributeValue.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" requestAttributeValue.List<RequestAttributeValue>findAll()Get all the requestAttributeValues.Optional<RequestAttributeValue>findOne(Long id)Get the "id" requestAttributeValue.RequestAttributeValuesave(RequestAttributeValue requestAttributeValue)Save a requestAttributeValue.
-
-
-
Method Detail
-
save
RequestAttributeValue save(RequestAttributeValue requestAttributeValue)
Save a requestAttributeValue.- Parameters:
requestAttributeValue- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<RequestAttributeValue> findAll()
Get all the requestAttributeValues.- Returns:
- the list of entities.
-
findOne
Optional<RequestAttributeValue> findOne(Long id)
Get the "id" requestAttributeValue.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" requestAttributeValue.- Parameters:
id- the id of the entity.
-
-