Package de.trustable.ca3s.core.service
Interface RequestProxyConfigService
-
- All Known Implementing Classes:
RequestProxyConfigServiceImpl
public interface RequestProxyConfigServiceService Interface for managingRequestProxyConfig.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" requestProxyConfig.List<RequestProxyConfig>findAll()Get all the requestProxyConfigs.Optional<RequestProxyConfig>findOne(Long id)Get the "id" requestProxyConfig.RequestProxyConfigsave(RequestProxyConfig requestProxyConfig)Save a requestProxyConfig.
-
-
-
Method Detail
-
save
RequestProxyConfig save(RequestProxyConfig requestProxyConfig)
Save a requestProxyConfig.- Parameters:
requestProxyConfig- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<RequestProxyConfig> findAll()
Get all the requestProxyConfigs.- Returns:
- the list of entities.
-
findOne
Optional<RequestProxyConfig> findOne(Long id)
Get the "id" requestProxyConfig.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" requestProxyConfig.- Parameters:
id- the id of the entity.
-
-