01: /*
02: * SOAPConstants.java
03: *
04: * Created on September 27, 2006, 10:46 AM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.modules.e2e.wsdl.extensions.soap;
11:
12: import javax.xml.namespace.QName;
13:
14: /**
15: *
16: * @author Michal Skvor
17: */
18: public final class SOAPConstants {
19:
20: public static final String SOAP_URI = "http://schemas.xmlsoap.org/wsdl/soap/";
21:
22: public static final String STYLE_RPC = "rpc";
23: public static final String STYLE_DOCUMENT = "document";
24:
25: public static final String USE_LITERAL = "literal";
26: public static final String USE_ENCODED = "encoded";
27:
28: public static final QName ADDRESS = new QName(SOAP_URI, "address");
29: public static final QName BINDING = new QName(SOAP_URI, "binding");
30: public static final QName OPERATION = new QName(SOAP_URI,
31: "operation");
32:
33: public static final QName BODY = new QName(SOAP_URI, "body");
34: public static final QName HEADER = new QName(SOAP_URI, "header");
35: public static final QName HEADER_FAULT = new QName(SOAP_URI,
36: "headerfault");
37: public static final QName FAULT = new QName(SOAP_URI, "fault");
38: }
|