Source Code Cross Referenced for Description.java in  » ESB » open-esb » com » sun » jbi » wsdl2 » impl » 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 » open esb » com.sun.jbi.wsdl2.impl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * BEGIN_HEADER - DO NOT EDIT
003:         *
004:         * The contents of this file are subject to the terms
005:         * of the Common Development and Distribution License
006:         * (the "License").  You may not use this file except
007:         * in compliance with the License.
008:         *
009:         * You can obtain a copy of the license at
010:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011:         * See the License for the specific language governing
012:         * permissions and limitations under the License.
013:         *
014:         * When distributing Covered Code, include this CDDL
015:         * HEADER in each file and include the License file at
016:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017:         * If applicable add the following below this CDDL HEADER,
018:         * with the fields enclosed by brackets "[]" replaced with
019:         * your own identifying information: Portions Copyright
020:         * [year] [name of copyright owner]
021:         */
022:
023:        /*
024:         * @(#)Description.java
025:         * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026:         *
027:         * END_HEADER - DO NOT EDIT
028:         */
029:        package com.sun.jbi.wsdl2.impl;
030:
031:        import javax.xml.namespace.QName;
032:        import org.w3.ns.wsdl.DescriptionType;
033:
034:        /**
035:         * Abstract implementation of
036:         * WSDL 2.0 Description container
037:         *
038:         * @author Sun Microsystems, Inc.
039:         */
040:        abstract class Description extends ExtensibleDocumentedComponent
041:                implements  com.sun.jbi.wsdl2.Definitions {
042:            /**
043:             * Get the XML bean for this definitions component.
044:             *
045:             * @return The definitions XML bean for this component.
046:             */
047:            protected final DescriptionType getBean() {
048:                return (DescriptionType) this .mXmlObject;
049:            }
050:
051:            /**
052:             * Construct an abstract Description fault reference implementation base component.
053:             * 
054:             * @param bean The XML bean for this Description component
055:             */
056:            Description(DescriptionType bean) {
057:                super (bean);
058:            }
059:
060:            /**
061:             * Find named binding in this definition or the imported/included
062:             * bindings.
063:             *
064:             * @param name Name of binding to find.
065:             * @return Named Binding; null if none found.
066:             */
067:            public abstract com.sun.jbi.wsdl2.Binding findBinding(QName name);
068:
069:            /**
070:             * Find named interface in this definition or the imported/included
071:             * interfaces.
072:             *
073:             * @param name Name of interface to find.
074:             * @return Named Interface; null if none found.
075:             */
076:            public abstract com.sun.jbi.wsdl2.Interface findInterface(QName name);
077:
078:            /**
079:             * Find named service in this definition or the imported/included
080:             * services.
081:             *
082:             * @param name Name of service to find.
083:             * @return Named Service; null if none found.
084:             */
085:            public abstract com.sun.jbi.wsdl2.Service findService(QName name);
086:
087:            /**
088:             * Create a new binding component, appended to this definition's binding
089:             * list.
090:             *
091:             * @param name Name of binding to create.
092:             * @return Newly created binding, appended to the bindings list.
093:             */
094:            public abstract com.sun.jbi.wsdl2.Binding addNewBinding(String name);
095:
096:            /**
097:             * Create a new import component, appended to this definition's import
098:             * list.
099:             *
100:             * @return Newly created import, appended to the imports list.
101:             */
102:            public abstract com.sun.jbi.wsdl2.Import addNewImport();
103:
104:            /**
105:             * Create a new include, appended to this definition's include list.
106:             *
107:             * @return Newly created include, appended to the includes list.
108:             */
109:            public abstract com.sun.jbi.wsdl2.Include addNewInclude();
110:
111:            /**
112:             * Create a new interface component, appended to this definition's
113:             * interface list.
114:             *
115:             * @param name Name of interface to create.
116:             * @return Newly created interface, appended to interfaces list.
117:             */
118:            public abstract com.sun.jbi.wsdl2.Interface addNewInterface(
119:                    String name);
120:
121:            /**
122:             * Create a new service component, appended to this definition's service
123:             * list.
124:             *
125:             * @param name Name of service to create.
126:             * @return Newly created service, appended to the services list.
127:             */
128:            public abstract com.sun.jbi.wsdl2.Service addNewService(String name);
129:
130:            /**
131:             * Create a new types component, replacing the existing types component
132:             * of this definition, if necessary.
133:             *
134:             * @return Newly created Types component.
135:             */
136:            public abstract com.sun.jbi.wsdl2.Types newTypes();
137:
138:            /**
139:             * Return this WSDL definition as an XML string.
140:             *
141:             * @return This definition, serialized as an XML string.
142:             */
143:            public abstract String toXmlString();
144:
145:            /**
146:             * Return this document as a DOM document. The DOM tree is a copy;
147:             * altering it will not affect this definitions component.
148:             *
149:             * @return This definition, as a DOM document.
150:             */
151:            public abstract org.w3c.dom.Document toXmlDocument();
152:
153:        }
154:
155:        // End-of-file: Description.java
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.