01: package org.obe.util;
02:
03: /**
04: * Provides string constants for W3C names and URIs.
05: *
06: * @author Adrian Price
07: */
08: public interface W3CNames {
09: /** XML SOAP binding namespace prefix. */
10: String SOAP_NS_PREFIX = "soap";
11:
12: /** XML SOAP binding namespace URI. */
13: String SOAP_NS_URI = "http://schemas.xmlsoap.org/soap/envelope/";
14:
15: /** XML SOAP binding namespace prefix. */
16: String SOAPBIND_NS_PREFIX = "soapbind";
17:
18: /** XML SOAP binding namespace URI. */
19: String SOAPBIND_NS_URI = "http://schemas.xmlsoap.org/wsdl/soap/";
20:
21: /** XML SOAP encoding namespace prefix. */
22: String SOAPENC_NS_PREFIX = "soapenc";
23:
24: /** XML SOAP encoding namespace URI. */
25: String SOAPENC_NS_URI = "http://schemas.xmlsoap.org/soap/encoding/";
26:
27: /** UDDI namespace prefix. */
28: String UDDI_NS_PREFIX = "uddi";
29:
30: /** UDDI namespace URI. */
31: String UDDI_NS_URI = "urn:uddi-org:api_v2";
32:
33: /** WSDL namespace prefix. */
34: String WSDL_NS_PREFIX = "wsdl";
35:
36: /** WSDL namespace URI. */
37: String WSDL_NS_URI = "http://schemas.xmlsoap.org/wsdl/";
38:
39: /** WS-I namespace prefix. */
40: String WSI_NS_PREFIX = "wsi";
41:
42: /** WSDL namespace URI. */
43: String WSI_NS_URI = "http://ws-i.org/schemas/conformanceClaim/";
44:
45: /** XML namespace prefix for XML declarations. */
46: String XML_NS_PREFIX = "xml";
47:
48: /** XML namespace prefix for XML declarations. */
49: String XML_NS_URI = "http://www.w3.org/XML/1998/namespace";
50:
51: /** XML namespace prefix for XML Namespace declarations. */
52: String XMLNS_NS_PREFIX = "xmlns";
53:
54: /** XML namespace URI for XML Namespace declarations. */
55: String XMLNS_NS_URI = "http://www.w3.org/2000/xmlns/";
56:
57: /** XML namespace prefix to use for XSD elements. */
58: String XSD_NS_PREFIX = "xsd";
59:
60: /** XML Schema namespace URI. */
61: String XSD_NS_URI = "http://www.w3.org/2001/XMLSchema";
62:
63: /** XML Schema document element tag name. */
64: String XSD_SCHEMA = "schema";
65:
66: /** XML namespace prefix to use for XSI elements. */
67: String XSI_NS_PREFIX = "xsi";
68:
69: /** XML Schema-instance namespace URI. */
70: String XSI_URI = "http://www.w3.org/2001/XMLSchema-instance";
71:
72: /** XSI schema location attribute tag name. */
73: String XSI_SCHEMA_LOCATION = "schemaLocation";
74:
75: /** XSI 'no-namespace' schema location attribute tag name. */
76: String XSI_NO_NS_SCHEMA_LOCATION = "noNamespaceSchemaLocation";
77:
78: /** XML namespace prefix to use for XSL elements. */
79: String XSL_NS_PREFIX = "xsl";
80:
81: /** XML Stylesheet namespace URI. */
82: String XSL_URI = "http://www.w3.org/1999/XSL/Transform";
83: }
|