org.opengis.cite.ogcapifeatures10.Namespaces Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ets-ogcapi-features10 Show documentation
Show all versions of ets-ogcapi-features10 Show documentation
Describe purpose of test suite.
package org.opengis.cite.ogcapifeatures10;
import java.net.URI;
/**
* XML namespace names.
*
* @see Namespaces in XML 1.0
*
*/
public class Namespaces {
private Namespaces() {
}
/** SOAP 1.2 message envelopes. */
public static final String SOAP_ENV = "http://www.w3.org/2003/05/soap-envelope";
/** W3C XLink */
public static final String XLINK = "http://www.w3.org/1999/xlink";
/** OGC 06-121r3 (OWS 1.1) */
public static final String OWS = "http://www.opengis.net/ows/1.1";
/** ISO 19136 (GML 3.2) */
public static final String GML = "http://www.opengis.net/gml/3.2";
/** W3C XML Schema namespace */
public static final URI XSD = URI
.create("http://www.w3.org/2001/XMLSchema");
/** Schematron (ISO 19757-3) namespace */
public static final URI SCH = URI
.create("http://purl.oclc.org/dsdl/schematron");
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy