View Javadoc
1   package nl.mineleni.openls;
2   
3   import java.io.Serializable;
4   
5   /**
6    * The Interface XmlNamespaceConstants.
7    */
8   public interface XmlNamespaceConstants extends Serializable {
9   
10  	/** De constante OPENLS_NAMESPACE_URI. {@value} */
11  	String OPENLS_NAMESPACE_URI = "http://www.opengis.net/xls";
12  
13  	/** De constante OPENLS_NAMESPACE_SCHEMALOCATION. {@value} */
14  	String OPENLS_NAMESPACE_SCHEMALOCATION = "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\""
15  			+ OPENLS_NAMESPACE_URI
16  			+ " http://schemas.opengis.net/ols/1.1.0/LocationUtilityService.xsd\"";
17  
18  	/** De constante OPENLS_NAMESPACE_PREFIX. {@value} */
19  	String OPENLS_NAMESPACE_PREFIX = "xls";
20  
21  	/** De constante OGC_GML_NAMESPACE_URI. {@value} */
22  	String OGC_GML_NAMESPACE_URI = "http://www.opengis.net/gml";
23  	// String OGC_GML_NAMESPACE_URI = "http://www.opengis.net/gml/3.2";
24  
25  	/** De constante OGC_GML_NAMESPACE_PREFIX. {@value} */
26  	String OGC_GML_NAMESPACE_PREFIX = "gml";
27  
28  	/**
29  	 * geeft een XML string representatie van dit object.
30  	 * 
31  	 * @return een XML string die dit object beschrijft
32  	 */
33  	String toXML();
34  }