717273747576777879
result.setFetchSize(vConfig.getFetchSize()); result.setRuleSet(vConfig.getRuleSet()); result.setBatchSize(vConfig.getBatchSize()); } else { throw new RepositoryConfigException("Invalid configuration class: " + config.getClass()); } return result; }
158159160161162163164165
public void validate() throws RepositoryConfigException { super.validate(); if (hostlist == null) { throw new RepositoryConfigException("No HostList specified for Virtuoso repository"); } }
243244245246247248249250
if (batchsize != null) { setBatchSize(Integer.parseInt(batchsize.getLabel())); } } catch (GraphUtilException e) { throw new RepositoryConfigException(e.getMessage(), e); } }