1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
* $Id$
*
* This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
* project.
*
* Copyright (C) 1998-2018 OpenLink Software
*
* This project is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License, dated June 1991.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
package virtuoso.rdf4j.driver.config;
import org.eclipse.rdf4j.model.IRI;
import org.eclipse.rdf4j.model.ValueFactory;
import org.eclipse.rdf4j.model.impl.SimpleValueFactory;
/**
* Defines constants for the VirtuosoRepository schema which is used by
* {@link VirtuosoRepositoryFactory}s to initialize {@link virtuoso.rdf4j.driver.VirtuosoRepository}s.
*
*/
public class VirtuosoRepositorySchema {
public static final String NAMESPACE = "http://www.openrdf.org/config/repository/virtuoso#";
/** <tt>http://www.openrdf.org/config/repository/virtuoso#hostList</tt> */
public final static IRI HOSTLIST;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#username</tt> */
public final static IRI USERNAME;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#password</tt> */
public final static IRI PASSWORD;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#defGraph</tt> */
public final static IRI DEFGRAPH;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#useLazyAdd</tt> */
public final static IRI USELAZYADD;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#fetchSize</tt> */
public final static IRI FETCHSIZE;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#roundRobin</tt> */
public final static IRI ROUNDROBIN;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#ruleSet</tt> */
public final static IRI RULESET;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#batchSize</tt> */
public final static IRI BATCHSIZE;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#insertBNodeAsVirtuosoIRI</tt> */
public final static IRI INSERTBNodeAsVirtuosoIRI;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#macroLib</tt> */
public final static IRI MACROLIB;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#concurrency</tt> */
public final static IRI CONCURRENCY;
/** <tt>http://www.openrdf.org/config/repository/virtuoso#useDefGraphForQueries</tt> */
public final static IRI USE_DEF_GRAPH_FOR_QUERIES;
static {
ValueFactory factory = SimpleValueFactory.getInstance();
HOSTLIST = factory.createIRI(NAMESPACE, "hostList");
USERNAME = factory.createIRI(NAMESPACE, "username");
PASSWORD = factory.createIRI(NAMESPACE, "password");
DEFGRAPH = factory.createIRI(NAMESPACE, "defGraph");
USELAZYADD = factory.createIRI(NAMESPACE, "useLazyAdd");
FETCHSIZE = factory.createIRI(NAMESPACE, "fetchSize");
ROUNDROBIN = factory.createIRI(NAMESPACE, "roundRobin");
RULESET = factory.createIRI(NAMESPACE, "ruleSet");
BATCHSIZE = factory.createIRI(NAMESPACE, "batchSize");
INSERTBNodeAsVirtuosoIRI = factory.createIRI(NAMESPACE, "insertBNodeAsVirtuosoIRI");
MACROLIB = factory.createIRI(NAMESPACE, "macroLib");
CONCURRENCY = factory.createIRI(NAMESPACE, "concurrency");
USE_DEF_GRAPH_FOR_QUERIES = factory.createIRI(NAMESPACE, "useDefGraphForQueries");
}
}
|