Package de.trustable.ca3s.core.service
Interface CAConnectorConfigService
-
- All Known Implementing Classes:
CAConnectorConfigServiceImpl
public interface CAConnectorConfigServiceService Interface for managingCAConnectorConfig.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(Long id)Delete the "id" cAConnectorConfig.List<CAConnectorConfig>findAll()Get all the cAConnectorConfigs.Optional<CAConnectorConfig>findOne(Long id)Get the "id" cAConnectorConfig.CAConnectorConfigsave(CAConnectorConfig cAConnectorConfig)Save a cAConnectorConfig.
-
-
-
Method Detail
-
save
CAConnectorConfig save(CAConnectorConfig cAConnectorConfig)
Save a cAConnectorConfig.- Parameters:
cAConnectorConfig- the entity to save.- Returns:
- the persisted entity.
-
findAll
List<CAConnectorConfig> findAll()
Get all the cAConnectorConfigs.- Returns:
- the list of entities.
-
findOne
Optional<CAConnectorConfig> findOne(Long id)
Get the "id" cAConnectorConfig.- Parameters:
id- the id of the entity.- Returns:
- the entity.
-
delete
void delete(Long id)
Delete the "id" cAConnectorConfig.- Parameters:
id- the id of the entity.
-
-