
org.xowl.infra.store.IRIs Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2015 Laurent Wouters
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this program.
* If not, see .
*
* Contributors:
* Laurent Wouters - [email protected]
******************************************************************************/
package org.xowl.infra.store;
/**
* Constant IRIs
*
* @author Laurent Wouters
*/
public class IRIs {
/**
* The IRI of the RDF schema
*/
public static final String RDF = "http://www.w3.org/1999/02/22-rdf-syntax-ns";
/**
* The IRI of the RDFS schema
*/
public static final String RDFS = "http://www.w3.org/2000/01/rdf-schema";
/**
* The IRI of the XSD schema
*/
public static final String XSD = "http://www.w3.org/2001/XMLSchema";
/**
* The IRI of the OWL2 schema
*/
public static final String OWL2 = "http://www.w3.org/2002/07/owl";
/**
* The base IRI of the XOWL schema
*/
public static final String XOWL_LANG = "http://xowl.org/lang/";
/**
* The base IRI of the XOWL entailment rules
*/
public static final String XOWL_RULES = "http://xowl.org/store/rules/";
/**
* The IRI of the XOWL entailment rules
*/
public static final String XOWL_RULES_XOWL = "http://xowl.org/store/rules/xowl";
/**
* URI of the default graph
*/
public static final String GRAPH_DEFAULT = "http://xowl.org/store/rdfgraphs/default";
/**
* URI of the graph used for inferred data
*/
public static final String GRAPH_INFERENCE = "http://xowl.org/store/rdfgraphs/inferred";
/**
* URI of the graph used for meta-data
*/
public static final String GRAPH_META = "http://xowl.org/store/rdfgraphs/meta";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy