Package de.trustable.ca3s.core.service
Interface ACMEAccountService
-
- All Known Implementing Classes:
ACMEAccountServiceImpl
public interface ACMEAccountServiceService Interface for managingACMEAccount.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" aCMEAccount.List<ACMEAccount>findAll()Get all the aCMEAccounts.Optional<ACMEAccount>findOne(Long id)Get the "id" aCMEAccount.ACMEAccountsave(ACMEAccount aCMEAccount)Save a aCMEAccount.
-
-
-
Method Detail
-
save
ACMEAccount save(ACMEAccount aCMEAccount)
Save a aCMEAccount.- Parameters:
aCMEAccount- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<ACMEAccount> findAll()
Get all the aCMEAccounts.- Returns:
- the list of entities.
-
findOne
Optional<ACMEAccount> findOne(Long id)
Get the "id" aCMEAccount.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" aCMEAccount.- Parameters:
id- the id of the entity.
-
-