All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.rdf.sail.config.BigdataConfigSchema Maven / Gradle / Ivy

package com.bigdata.rdf.sail.config;

import org.openrdf.model.URI;
import org.openrdf.model.ValueFactory;
import org.openrdf.model.impl.ValueFactoryImpl;

/**
 * Defines constants for the schema which is used by
 * {@link BigdataSailFactory} and {@link BigdataRepositoryFactory}.
 */
public class BigdataConfigSchema {

	/** The bigdata schema namespace 
     * (http://www.bigdata.com/config/sail/bigdata#). 
     */
	public static final String NAMESPACE = 
            "http://www.bigdata.com/config/sail/bigdata#";

	/** http://www.bigdata.com/config/sail/bigdata#properties */
	public final static URI PROPERTIES;

	static {
		ValueFactory factory = ValueFactoryImpl.getInstance();
		PROPERTIES = factory.createURI(NAMESPACE, "properties");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy