1 package org.codehaus.xfire.soap;
2
3
4 /***
5 * SOAP constants from the specs.
6 *
7 * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
8 * @since Feb 18, 2004
9 */
10 public class SoapConstants
11 {
12 /*** Document styles. */
13
14 /***
15 * Constant used to specify a rpc binding style.
16 */
17 public static final String STYLE_RPC = "rpc";
18
19 /***
20 * Constant used to specify a document binding style.
21 */
22 public static final String STYLE_DOCUMENT = "document";
23
24 /***
25 * Constant used to specify a wrapped binding style.
26 */
27 public static final String STYLE_WRAPPED = "wrapped";
28
29 /***
30 * Constant used to specify a message binding style.
31 */
32 public static final String STYLE_MESSAGE = "message";
33
34 /***
35 * Constant used to specify a literal binding use.
36 */
37 public static final String USE_LITERAL = "literal";
38
39 /***
40 * Constant used to specify a encoded binding use.
41 */
42 public static final String USE_ENCODED = "encoded";
43
44 /***
45 * XML Schema Namespace.
46 */
47 public static final String XSD = "http://www.w3.org/2001/XMLSchema";
48 public static final String XSD_PREFIX = "xsd";
49
50 public static final String XSI_NS = "http://www.w3.org/2001/XMLSchema-instance";
51
52 public static final String MEP_ROBUST_IN_OUT = "urn:xfire:mep:in-out";
53 public static final String MEP_IN = "urn:xfire:mep:in";
54
55 }