1 package nl.mineleni.openls;
2
3 import java.io.Serializable;
4
5
6
7
8 public interface XmlNamespaceConstants extends Serializable {
9
10
11 String OPENLS_NAMESPACE_URI = "http://www.opengis.net/xls";
12
13
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
19 String OPENLS_NAMESPACE_PREFIX = "xls";
20
21
22 String OGC_GML_NAMESPACE_URI = "http://www.opengis.net/gml";
23
24
25
26 String OGC_GML_NAMESPACE_PREFIX = "gml";
27
28
29
30
31
32
33 String toXML();
34 }