Package de.trustable.ca3s.core.service
Interface RequestAttributeService
-
- All Known Implementing Classes:
RequestAttributeServiceImpl
public interface RequestAttributeServiceService Interface for managingRequestAttribute.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" requestAttribute.List<RequestAttribute>findAll()Get all the requestAttributes.Optional<RequestAttribute>findOne(Long id)Get the "id" requestAttribute.RequestAttributesave(RequestAttribute requestAttribute)Save a requestAttribute.
-
-
-
Method Detail
-
save
RequestAttribute save(RequestAttribute requestAttribute)
Save a requestAttribute.- Parameters:
requestAttribute- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<RequestAttribute> findAll()
Get all the requestAttributes.- Returns:
- the list of entities.
-
findOne
Optional<RequestAttribute> findOne(Long id)
Get the "id" requestAttribute.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" requestAttribute.- Parameters:
id- the id of the entity.
-
-