Source Code Cross Referenced for HttpConfigExtension.java in  » ESB » cbesb-1.2 » com » bostechcorp » cbesb » runtime » component » http » wsdl » 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 » cbesb 1.2 » com.bostechcorp.cbesb.runtime.component.http.wsdl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * ChainBuilder ESB
03:         * 		Visual Enterprise Integration
04:         * 
05:         * Copyright (C) 2007 Bostech Corporation
06:         * 
07:         * This program is free software; you can redistribute it and/or modify it 
08:         * under the terms of the GNU General Public License as published by the 
09:         * Free Software Foundation; either version 2 of the License, or (at your option) 
10:         * any later version.
11:         *
12:         * This program is distributed in the hope that it will be useful, 
13:         * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
14:         * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 
15:         * for more details.
16:         * 
17:         * You should have received a copy of the GNU General Public License along with 
18:         * this program; if not, write to the Free Software Foundation, Inc., 
19:         * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20:         *
21:         *
22:         * $Id: HttpConfigExtension.java 11318 2008-01-10 20:23:21Z mpreston $
23:         */
24:        package com.bostechcorp.cbesb.runtime.component.http.wsdl;
25:
26:        import javax.wsdl.extensions.ExtensionRegistry;
27:        import javax.xml.namespace.QName;
28:
29:        public class HttpConfigExtension {
30:
31:            public static final String NS_URI_CBHTTP = "http://cbesb.bostechcorp.com/wsdl/http/1.0";
32:
33:            public static final String ELEM_ENDPOINT = "config";
34:
35:            public static final QName Q_ELEM_CBHTTP_ENDPOINT = new QName(
36:                    NS_URI_CBHTTP, ELEM_ENDPOINT);
37:
38:            public static final String ROLE = "role";
39:            public static final String ROLE_CONSUMER = "consumer";
40:            public static final String ROLE_PROVIDER = "provider";
41:
42:            public static final String DEFAULT_MEP = "defaultMep";
43:            public static final String DEFAULT_MEP_IN_ONLY = "in-only";
44:            public static final String DEFAULT_MEP_ROBUST_IN_ONLY = "robust-in-only";
45:            public static final String DEFAULT_MEP_IN_OUT = "in-out";
46:
47:            public static final String DEFAULT_OPERATION = "defaultOperation";
48:
49:            public static final String WSDL_RESOURCE = "wsdlResource";
50:
51:            public static final String AUTH_MODE = "authMode";
52:            public static final String AUTH_USER = "authUser";
53:            public static final String AUTH_PASSWORD = "authPassword";
54:
55:            public static final String SSL_PROTOCOL = "sslProtocol";
56:            public static final String USE_PRIVATE_KEY = "usePrivateKey";
57:            public static final String KEY_STORE_FILE = "keyStoreFile";
58:            public static final String KEY_STORE_PASSWORD = "keyStorePassword";
59:            public static final String USE_DEFAULT_TRUST_STORE = "useDefaultTrustStore";
60:            public static final String TRUST_STORE_FILE = "trustStoreFile";
61:            public static final String TRUST_STORE_PASSWORD = "trustStorePassword";
62:            public static final String AUTHENTICATE_CLIENT = "authenticateClient";
63:            public static final String AUTHENTICATE_SERVER = "authenticateServer";
64:            public static final String ALLOW_ANONYMOUS = "allowAnonymous";
65:
66:            public static final String MARSHALLER = "marshaller";
67:            public static final String TIMEOUT = "timeout";
68:            public static final String ATTACHMENT_MODE = "attachmentMode";
69:
70:            public static final String TARGET_SERVICE = "service";
71:            public static final String TARGET_PORT = "port";
72:            public static final String TARGET_OPERATION = "operation";
73:
74:            public static final String PROXY_HOST = "proxyHost";
75:            public static final String PROXY_PORT = "proxyPort";
76:            public static final String PROXY_USER = "proxyUser";
77:            public static final String PROXY_PASSWORD = "proxyPassword";
78:
79:            public static final String WSDL2_NS = "http://www.w3.org/2004/08/wsdl/";
80:
81:            public static void register(ExtensionRegistry registry) {
82:                registry.registerSerializer(javax.wsdl.Port.class,
83:                        Q_ELEM_CBHTTP_ENDPOINT, new HttpConfigSerializer());
84:                registry.registerDeserializer(javax.wsdl.Port.class,
85:                        Q_ELEM_CBHTTP_ENDPOINT, new HttpConfigDeserializer());
86:                registry.mapExtensionTypes(javax.wsdl.Port.class,
87:                        Q_ELEM_CBHTTP_ENDPOINT, HttpConfig.class);
88:            }
89:
90:        }
w__w___w.j___a__v___a___2s__.__c__o___m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.