Package de.trustable.ca3s.core.service
Interface CsrAttributeService
-
- All Known Implementing Classes:
CsrAttributeServiceImpl
public interface CsrAttributeServiceService Interface for managingCsrAttribute.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" csrAttribute.List<CsrAttribute>findAll()Get all the csrAttributes.Optional<CsrAttribute>findOne(Long id)Get the "id" csrAttribute.CsrAttributesave(CsrAttribute csrAttribute)Save a csrAttribute.
-
-
-
Method Detail
-
save
CsrAttribute save(CsrAttribute csrAttribute)
Save a csrAttribute.- Parameters:
csrAttribute- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<CsrAttribute> findAll()
Get all the csrAttributes.- Returns:
- the list of entities.
-
findOne
Optional<CsrAttribute> findOne(Long id)
Get the "id" csrAttribute.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" csrAttribute.- Parameters:
id- the id of the entity.
-
-