Class RequestProxyConfigServiceImpl
- java.lang.Object
-
- de.trustable.ca3s.core.service.impl.RequestProxyConfigServiceImpl
-
- All Implemented Interfaces:
RequestProxyConfigService
@Service @Transactional public class RequestProxyConfigServiceImpl extends Object implements RequestProxyConfigService
Service Implementation for managingRequestProxyConfig.
-
-
Constructor Summary
Constructors Constructor Description RequestProxyConfigServiceImpl(RequestProxyConfigRepository requestProxyConfigRepository)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(Long id)Delete the requestProxyConfig by id.List<RequestProxyConfig>findAll()Get all the requestProxyConfigs.Optional<RequestProxyConfig>findOne(Long id)Get one requestProxyConfig by id.RequestProxyConfigsave(RequestProxyConfig requestProxyConfig)Save a requestProxyConfig.
-
-
-
Constructor Detail
-
RequestProxyConfigServiceImpl
public RequestProxyConfigServiceImpl(RequestProxyConfigRepository requestProxyConfigRepository)
-
-
Method Detail
-
save
public RequestProxyConfig save(RequestProxyConfig requestProxyConfig)
Save a requestProxyConfig.- Specified by:
savein interfaceRequestProxyConfigService- Parameters:
requestProxyConfig- the entity to save.- Returns:
- the persisted entity.
-
findAll
@Transactional(readOnly=true) public List<RequestProxyConfig> findAll()
Get all the requestProxyConfigs.- Specified by:
findAllin interfaceRequestProxyConfigService- Returns:
- the list of entities.
-
findOne
@Transactional(readOnly=true) public Optional<RequestProxyConfig> findOne(Long id)
Get one requestProxyConfig by id.- Specified by:
findOnein interfaceRequestProxyConfigService- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
public void delete(Long id)
Delete the requestProxyConfig by id.- Specified by:
deletein interfaceRequestProxyConfigService- Parameters:
id- the id of the entity.
-
-