Source Code Cross Referenced for WSDLConstants.java in  » ESB » celtix-1.0 » org » objectweb » celtix » tools » common » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ESB » celtix 1.0 » org.objectweb.celtix.tools.common 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.objectweb.celtix.tools.common;
002:
003:        import javax.xml.namespace.QName;
004:
005:        public final class WSDLConstants {
006:
007:            public static final String DOT_WSDL = ".wsdl";
008:            public static final String RESPONSE = "Response";
009:            public static final String PARAMETERS = "parameters";
010:            public static final String RESULT = "parameters";
011:            public static final String UNWRAPPABLE_RESULT = "result";
012:
013:            public static final String WSDL_PREFIX = "wsdl";
014:            public static final String XSD_NAMESPACE = "http://www.w3.org/2001/XMLSchema";
015:            public static final String XSD_PREFIX = "xsd";
016:            public static final String SOAP11_NAMESPACE = "http://schemas.xmlsoap.org/wsdl/soap/";
017:            public static final String SOAP12_NAMESPACE = "http://schemas.xmlsoap.org/wsdl/soap12/";
018:            public static final String SOAP_PREFIX = "soap";
019:            public static final String SOAP12_PREFIX = "soap12";
020:            public static final String JMS_PREFIX = "jms";
021:            public static final String TNS_PREFIX = "tns";
022:
023:            public static final String BINDING = "Binding";
024:            public static final String SOAP_HTTP_TRANSPORT = "http://schemas.xmlsoap.org/soap/http";
025:            public static final String SOAP12_HTTP_TRANSPORT = "http://schemas.xmlsoap.org/soap12/http";
026:
027:            public static final String DOCUMENT = "document";
028:            public static final String RPC = "rpc";
029:            public static final String LITERAL = "literal";
030:            public static final String REPLACE_WITH_ACTUAL_URL = "REPLACE_WITH_ACTUAL_URL";
031:
032:            public static final String NS_XMLNS = "http://www.w3.org/2001/XMLSchema";
033:            public static final String NS_WSDL = "http://schemas.xmlsoap.org/wsdl/";
034:            public static final String NS_SOAP11_HTTP_BINDING = "http://schemas.xmlsoap.org/soap/http";
035:
036:            public static final String ATTR_TRANSPORT = "transport";
037:            public static final String ATTR_LOCATION = "location";
038:            public static final String ATTR_NAME = "name";
039:            public static final String ATTR_TNS = "targetNamespace";
040:
041:            public static final QName QNAME_SCHEMA = new QName(NS_XMLNS,
042:                    "schema");
043:
044:            public static final QName QNAME_BINDING = new QName(NS_WSDL,
045:                    "binding");
046:            public static final QName QNAME_DEFINITIONS = new QName(NS_WSDL,
047:                    "definitions");
048:            public static final QName QNAME_DOCUMENTATION = new QName(NS_WSDL,
049:                    "documentation");
050:            public static final QName NS_SOAP_BINDING_ADDRESS = new QName(
051:                    "http://schemas.xmlsoap.org/wsdl/soap/", "address");
052:            public static final QName NS_XMLHTTP_BINDING_ADDRESS = new QName(
053:                    "http://schemas.xmlsoap.org/wsdl/http/", "address");
054:            public static final QName NS_SOAP_BINDING = new QName(
055:                    "http://schemas.xmlsoap.org/wsdl/soap/", "binding");
056:            public static final QName NS_SOAP_OPERATION = new QName(
057:                    "http://schemas.xmlsoap.org/wsdl/soap/", "operation");
058:            public static final QName NS_SOAP_BODY = new QName(
059:                    "http://schemas.xmlsoap.org/wsdl/soap/", "body");
060:            public static final QName NS_SOAP_FAULT = new QName(
061:                    "http://schemas.xmlsoap.org/wsdl/soap/", "fault");
062:
063:            public static final QName NS_SOAP12_BINDING = new QName(
064:                    "http://schemas.xmlsoap.org/wsdl/soap12/", "binding");
065:            public static final QName NS_SOAP12_BINDING_ADDRESS = new QName(
066:                    "http://schemas.xmlsoap.org/wsdl/soap12/", "address");
067:
068:            public static final QName QNAME_IMPORT = new QName(NS_WSDL,
069:                    "import");
070:            public static final QName QNAME_MESSAGE = new QName(NS_WSDL,
071:                    "message");
072:            public static final QName QNAME_PART = new QName(NS_WSDL, "part");
073:            public static final QName QNAME_OPERATION = new QName(NS_WSDL,
074:                    "operation");
075:            public static final QName QNAME_INPUT = new QName(NS_WSDL, "input");
076:            public static final QName QNAME_OUTPUT = new QName(NS_WSDL,
077:                    "output");
078:
079:            public static final QName QNAME_PORT = new QName(NS_WSDL, "port");
080:            public static final QName QNAME_ADDRESS = new QName(NS_WSDL,
081:                    "address");
082:            public static final QName QNAME_PORT_TYPE = new QName(NS_WSDL,
083:                    "portType");
084:            public static final QName QNAME_FAULT = new QName(NS_WSDL, "fault");
085:            public static final QName QNAME_SERVICE = new QName(NS_WSDL,
086:                    "service");
087:            public static final QName QNAME_TYPES = new QName(NS_WSDL, "types");
088:
089:            // WSDL Validation
090:            public static final String ATTR_PART_ELEMENT = "element";
091:            public static final String ATTR_PART_TYPE = "type";
092:            public static final String ATTR_TYPE = "type";
093:            //For LineNumDOMParser getUserData(location)
094:            public static final String NODE_LOCATION = "location";
095:
096:            public static final int DOC_WRAPPED = 1;
097:            public static final int DOC_BARE = 2;
098:            public static final int RPC_WRAPPED = 3;
099:            public static final int ERORR_STYLE_USE = -1;
100:
101:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.