Package de.trustable.ca3s.core.service
Interface RDNAttributeService
-
- All Known Implementing Classes:
RDNAttributeServiceImpl
public interface RDNAttributeServiceService Interface for managingRDNAttribute.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" rDNAttribute.List<RDNAttribute>findAll()Get all the rDNAttributes.Optional<RDNAttribute>findOne(Long id)Get the "id" rDNAttribute.RDNAttributesave(RDNAttribute rDNAttribute)Save a rDNAttribute.
-
-
-
Method Detail
-
save
RDNAttribute save(RDNAttribute rDNAttribute)
Save a rDNAttribute.- Parameters:
rDNAttribute- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<RDNAttribute> findAll()
Get all the rDNAttributes.- Returns:
- the list of entities.
-
findOne
Optional<RDNAttribute> findOne(Long id)
Get the "id" rDNAttribute.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" rDNAttribute.- Parameters:
id- the id of the entity.
-
-