/** * Copyright Intellectual Reserve, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.gedcomx.rs.client.util; public interface VocabConstants { // static final String W3_NAMESPACE = "http://www.w3.org/2000/xmlns/"; static final String RDF_NAMESPACE = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"; static final String RDFS_NAMESPACE = "http://www.w3.org/2000/01/rdf-schema#"; static final String DC_NAMESPACE = "http://purl.org/dc/terms/"; static final String XML_NAMESPACE = "http://www.w3.org/XML/1998/namespace"; static final String RDF_SEQUENCE_TYPE = RDF_NAMESPACE + "Seq"; // static final String PREFIX_RDF = "rdf"; // static final String PREFIX_RDFS = "rdfs"; // static final String PREFIX_DC = "dc"; // static final String PREFIX_DCTERMS = "dcterms"; // static final String PREFIX_XMLNS = "xmlns"; }