Package de.trustable.ca3s.core.service
Interface AcmeAuthorizationService
-
- All Known Implementing Classes:
AcmeAuthorizationServiceImpl
public interface AcmeAuthorizationServiceService Interface for managingAcmeAuthorization.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" acmeAuthorization.List<AcmeAuthorization>findAll()Get all the acmeAuthorizations.Optional<AcmeAuthorization>findOne(Long id)Get the "id" acmeAuthorization.AcmeAuthorizationsave(AcmeAuthorization acmeAuthorization)Save a acmeAuthorization.
-
-
-
Method Detail
-
save
AcmeAuthorization save(AcmeAuthorization acmeAuthorization)
Save a acmeAuthorization.- Parameters:
acmeAuthorization- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<AcmeAuthorization> findAll()
Get all the acmeAuthorizations.- Returns:
- the list of entities.
-
findOne
Optional<AcmeAuthorization> findOne(Long id)
Get the "id" acmeAuthorization.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" acmeAuthorization.- Parameters:
id- the id of the entity.
-
-