in src/main/java/org/apache/nutch/webui/service/impl/NutchServiceImpl.java [69:76]
public Map<String, String> getNutchConfig(Long instanceId) {
NutchInstance instance = instanceService.getInstance(instanceId);
try {
return nutchClientFactory.getClient(instance).getNutchConfig("default");
} catch (ClientHandlerException exception) {
return Collections.emptyMap();
}
}