Package de.trustable.ca3s.core.service
Interface AcmeNonceService
-
- All Known Implementing Classes:
AcmeNonceServiceImpl
public interface AcmeNonceServiceService Interface for managingAcmeNonce.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" acmeNonce.List<AcmeNonce>findAll()Get all the acmeNonces.Optional<AcmeNonce>findOne(Long id)Get the "id" acmeNonce.AcmeNoncesave(AcmeNonce acmeNonce)Save a acmeNonce.
-
-
-
Method Detail
-
save
AcmeNonce save(AcmeNonce acmeNonce)
Save a acmeNonce.- Parameters:
acmeNonce- the entity to save.- Returns:
- the persisted entity.
-
findOne
Optional<AcmeNonce> findOne(Long id)
Get the "id" acmeNonce.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" acmeNonce.- Parameters:
id- the id of the entity.
-
-