Package de.trustable.ca3s.core.service
Interface AcmeIdentifierService
-
- All Known Implementing Classes:
AcmeIdentifierServiceImpl
public interface AcmeIdentifierServiceService Interface for managingAcmeIdentifier.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" acmeIdentifier.List<AcmeIdentifier>findAll()Get all the acmeIdentifiers.Optional<AcmeIdentifier>findOne(Long id)Get the "id" acmeIdentifier.AcmeIdentifiersave(AcmeIdentifier acmeIdentifier)Save a acmeIdentifier.
-
-
-
Method Detail
-
save
AcmeIdentifier save(AcmeIdentifier acmeIdentifier)
Save a acmeIdentifier.- Parameters:
acmeIdentifier- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<AcmeIdentifier> findAll()
Get all the acmeIdentifiers.- Returns:
- the list of entities.
-
findOne
Optional<AcmeIdentifier> findOne(Long id)
Get the "id" acmeIdentifier.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" acmeIdentifier.- Parameters:
id- the id of the entity.
-
-