01: /*
02: * WSDLConstants.java
03: *
04: * Created on September 27, 2006, 10:25 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;
11:
12: import javax.xml.namespace.QName;
13:
14: /**
15: *
16: * @author Michal Skvor
17: */
18: public final class WSDLConstants {
19:
20: public static final String WSDL_URI = "http://schemas.xmlsoap.org/wsdl/";
21:
22: public static final QName TYPES = new QName(WSDL_URI, "types");
23: public static final QName DEFINITIONS = new QName(WSDL_URI,
24: "definitions");
25: public static final QName MESSAGE = new QName(WSDL_URI, "message");
26: public static final QName PART = new QName(WSDL_URI, "part");
27: public static final QName SERVICE = new QName(WSDL_URI, "service");
28: public static final QName PORT = new QName(WSDL_URI, "port");
29: public static final QName PORT_TYPE = new QName(WSDL_URI,
30: "portType");
31: public static final QName OPERATION = new QName(WSDL_URI,
32: "operation");
33: public static final QName BINDING = new QName(WSDL_URI, "binding");
34:
35: public static final QName INPUT = new QName(WSDL_URI, "input");
36: public static final QName OUTPUT = new QName(WSDL_URI, "output");
37: public static final QName FAULT = new QName(WSDL_URI, "fault");
38:
39: public static final QName IMPORT = new QName(WSDL_URI, "import");
40:
41: public static final QName DOCUMENTATION = new QName(WSDL_URI,
42: "documentation");
43: }
|