Source Code Cross Referenced for BindingOperationType.java in  » ESB » open-esb » org » w3 » ns » 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 » open esb » org.w3.ns.wsdl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * XML Type:  BindingOperationType
003:         * Namespace: http://www.w3.org/ns/wsdl
004:         * Java type: org.w3.ns.wsdl.BindingOperationType
005:         *
006:         * Automatically generated - do not modify.
007:         */
008:        package org.w3.ns.wsdl;
009:
010:        /**
011:         * An XML BindingOperationType(@http://www.w3.org/ns/wsdl).
012:         *
013:         * This is a complex type.
014:         */
015:        public interface BindingOperationType extends
016:                org.w3.ns.wsdl.ExtensibleDocumentedType {
017:            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType) org.apache.xmlbeans.XmlBeans
018:                    .typeSystemForClassLoader(
019:                            BindingOperationType.class.getClassLoader(),
020:                            "schemaorg_apache_xmlbeans.system.s2EAECD9BB08C57F25B7B261051DD8E7E")
021:                    .resolveHandle("bindingoperationtypeeafftype");
022:
023:            /**
024:             * Gets array of all "input" elements
025:             */
026:            org.w3.ns.wsdl.BindingOperationMessageType[] getInputArray();
027:
028:            /**
029:             * Gets ith "input" element
030:             */
031:            org.w3.ns.wsdl.BindingOperationMessageType getInputArray(int i);
032:
033:            /**
034:             * Returns number of "input" element
035:             */
036:            int sizeOfInputArray();
037:
038:            /**
039:             * Sets array of all "input" element
040:             */
041:            void setInputArray(
042:                    org.w3.ns.wsdl.BindingOperationMessageType[] inputArray);
043:
044:            /**
045:             * Sets ith "input" element
046:             */
047:            void setInputArray(int i,
048:                    org.w3.ns.wsdl.BindingOperationMessageType input);
049:
050:            /**
051:             * Inserts and returns a new empty value (as xml) as the ith "input" element
052:             */
053:            org.w3.ns.wsdl.BindingOperationMessageType insertNewInput(int i);
054:
055:            /**
056:             * Appends and returns a new empty value (as xml) as the last "input" element
057:             */
058:            org.w3.ns.wsdl.BindingOperationMessageType addNewInput();
059:
060:            /**
061:             * Removes the ith "input" element
062:             */
063:            void removeInput(int i);
064:
065:            /**
066:             * Gets array of all "output" elements
067:             */
068:            org.w3.ns.wsdl.BindingOperationMessageType[] getOutputArray();
069:
070:            /**
071:             * Gets ith "output" element
072:             */
073:            org.w3.ns.wsdl.BindingOperationMessageType getOutputArray(int i);
074:
075:            /**
076:             * Returns number of "output" element
077:             */
078:            int sizeOfOutputArray();
079:
080:            /**
081:             * Sets array of all "output" element
082:             */
083:            void setOutputArray(
084:                    org.w3.ns.wsdl.BindingOperationMessageType[] outputArray);
085:
086:            /**
087:             * Sets ith "output" element
088:             */
089:            void setOutputArray(int i,
090:                    org.w3.ns.wsdl.BindingOperationMessageType output);
091:
092:            /**
093:             * Inserts and returns a new empty value (as xml) as the ith "output" element
094:             */
095:            org.w3.ns.wsdl.BindingOperationMessageType insertNewOutput(int i);
096:
097:            /**
098:             * Appends and returns a new empty value (as xml) as the last "output" element
099:             */
100:            org.w3.ns.wsdl.BindingOperationMessageType addNewOutput();
101:
102:            /**
103:             * Removes the ith "output" element
104:             */
105:            void removeOutput(int i);
106:
107:            /**
108:             * Gets array of all "infault" elements
109:             */
110:            org.w3.ns.wsdl.BindingOperationFaultType[] getInfaultArray();
111:
112:            /**
113:             * Gets ith "infault" element
114:             */
115:            org.w3.ns.wsdl.BindingOperationFaultType getInfaultArray(int i);
116:
117:            /**
118:             * Returns number of "infault" element
119:             */
120:            int sizeOfInfaultArray();
121:
122:            /**
123:             * Sets array of all "infault" element
124:             */
125:            void setInfaultArray(
126:                    org.w3.ns.wsdl.BindingOperationFaultType[] infaultArray);
127:
128:            /**
129:             * Sets ith "infault" element
130:             */
131:            void setInfaultArray(int i,
132:                    org.w3.ns.wsdl.BindingOperationFaultType infault);
133:
134:            /**
135:             * Inserts and returns a new empty value (as xml) as the ith "infault" element
136:             */
137:            org.w3.ns.wsdl.BindingOperationFaultType insertNewInfault(int i);
138:
139:            /**
140:             * Appends and returns a new empty value (as xml) as the last "infault" element
141:             */
142:            org.w3.ns.wsdl.BindingOperationFaultType addNewInfault();
143:
144:            /**
145:             * Removes the ith "infault" element
146:             */
147:            void removeInfault(int i);
148:
149:            /**
150:             * Gets array of all "outfault" elements
151:             */
152:            org.w3.ns.wsdl.BindingOperationFaultType[] getOutfaultArray();
153:
154:            /**
155:             * Gets ith "outfault" element
156:             */
157:            org.w3.ns.wsdl.BindingOperationFaultType getOutfaultArray(int i);
158:
159:            /**
160:             * Returns number of "outfault" element
161:             */
162:            int sizeOfOutfaultArray();
163:
164:            /**
165:             * Sets array of all "outfault" element
166:             */
167:            void setOutfaultArray(
168:                    org.w3.ns.wsdl.BindingOperationFaultType[] outfaultArray);
169:
170:            /**
171:             * Sets ith "outfault" element
172:             */
173:            void setOutfaultArray(int i,
174:                    org.w3.ns.wsdl.BindingOperationFaultType outfault);
175:
176:            /**
177:             * Inserts and returns a new empty value (as xml) as the ith "outfault" element
178:             */
179:            org.w3.ns.wsdl.BindingOperationFaultType insertNewOutfault(int i);
180:
181:            /**
182:             * Appends and returns a new empty value (as xml) as the last "outfault" element
183:             */
184:            org.w3.ns.wsdl.BindingOperationFaultType addNewOutfault();
185:
186:            /**
187:             * Removes the ith "outfault" element
188:             */
189:            void removeOutfault(int i);
190:
191:            /**
192:             * Gets the "ref" attribute
193:             */
194:            javax.xml.namespace.QName getRef();
195:
196:            /**
197:             * Gets (as xml) the "ref" attribute
198:             */
199:            org.apache.xmlbeans.XmlQName xgetRef();
200:
201:            /**
202:             * Sets the "ref" attribute
203:             */
204:            void setRef(javax.xml.namespace.QName ref);
205:
206:            /**
207:             * Sets (as xml) the "ref" attribute
208:             */
209:            void xsetRef(org.apache.xmlbeans.XmlQName ref);
210:
211:            /**
212:             * A factory class with static methods for creating instances
213:             * of this type.
214:             */
215:
216:            public static final class Factory {
217:                public static org.w3.ns.wsdl.BindingOperationType newInstance() {
218:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
219:                            .getContextTypeLoader().newInstance(type, null);
220:                }
221:
222:                public static org.w3.ns.wsdl.BindingOperationType newInstance(
223:                        org.apache.xmlbeans.XmlOptions options) {
224:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
225:                            .getContextTypeLoader().newInstance(type, options);
226:                }
227:
228:                /** @param xmlAsString the string value to parse */
229:                public static org.w3.ns.wsdl.BindingOperationType parse(
230:                        java.lang.String xmlAsString)
231:                        throws org.apache.xmlbeans.XmlException {
232:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
233:                            .getContextTypeLoader().parse(xmlAsString, type,
234:                                    null);
235:                }
236:
237:                public static org.w3.ns.wsdl.BindingOperationType parse(
238:                        java.lang.String xmlAsString,
239:                        org.apache.xmlbeans.XmlOptions options)
240:                        throws org.apache.xmlbeans.XmlException {
241:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
242:                            .getContextTypeLoader().parse(xmlAsString, type,
243:                                    options);
244:                }
245:
246:                /** @param file the file from which to load an xml document */
247:                public static org.w3.ns.wsdl.BindingOperationType parse(
248:                        java.io.File file)
249:                        throws org.apache.xmlbeans.XmlException,
250:                        java.io.IOException {
251:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
252:                            .getContextTypeLoader().parse(file, type, null);
253:                }
254:
255:                public static org.w3.ns.wsdl.BindingOperationType parse(
256:                        java.io.File file,
257:                        org.apache.xmlbeans.XmlOptions options)
258:                        throws org.apache.xmlbeans.XmlException,
259:                        java.io.IOException {
260:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
261:                            .getContextTypeLoader().parse(file, type, options);
262:                }
263:
264:                public static org.w3.ns.wsdl.BindingOperationType parse(
265:                        java.net.URL u)
266:                        throws org.apache.xmlbeans.XmlException,
267:                        java.io.IOException {
268:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
269:                            .getContextTypeLoader().parse(u, type, null);
270:                }
271:
272:                public static org.w3.ns.wsdl.BindingOperationType parse(
273:                        java.net.URL u, org.apache.xmlbeans.XmlOptions options)
274:                        throws org.apache.xmlbeans.XmlException,
275:                        java.io.IOException {
276:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
277:                            .getContextTypeLoader().parse(u, type, options);
278:                }
279:
280:                public static org.w3.ns.wsdl.BindingOperationType parse(
281:                        java.io.InputStream is)
282:                        throws org.apache.xmlbeans.XmlException,
283:                        java.io.IOException {
284:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
285:                            .getContextTypeLoader().parse(is, type, null);
286:                }
287:
288:                public static org.w3.ns.wsdl.BindingOperationType parse(
289:                        java.io.InputStream is,
290:                        org.apache.xmlbeans.XmlOptions options)
291:                        throws org.apache.xmlbeans.XmlException,
292:                        java.io.IOException {
293:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
294:                            .getContextTypeLoader().parse(is, type, options);
295:                }
296:
297:                public static org.w3.ns.wsdl.BindingOperationType parse(
298:                        java.io.Reader r)
299:                        throws org.apache.xmlbeans.XmlException,
300:                        java.io.IOException {
301:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
302:                            .getContextTypeLoader().parse(r, type, null);
303:                }
304:
305:                public static org.w3.ns.wsdl.BindingOperationType parse(
306:                        java.io.Reader r, org.apache.xmlbeans.XmlOptions options)
307:                        throws org.apache.xmlbeans.XmlException,
308:                        java.io.IOException {
309:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
310:                            .getContextTypeLoader().parse(r, type, options);
311:                }
312:
313:                public static org.w3.ns.wsdl.BindingOperationType parse(
314:                        javax.xml.stream.XMLStreamReader sr)
315:                        throws org.apache.xmlbeans.XmlException {
316:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
317:                            .getContextTypeLoader().parse(sr, type, null);
318:                }
319:
320:                public static org.w3.ns.wsdl.BindingOperationType parse(
321:                        javax.xml.stream.XMLStreamReader sr,
322:                        org.apache.xmlbeans.XmlOptions options)
323:                        throws org.apache.xmlbeans.XmlException {
324:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
325:                            .getContextTypeLoader().parse(sr, type, options);
326:                }
327:
328:                public static org.w3.ns.wsdl.BindingOperationType parse(
329:                        org.w3c.dom.Node node)
330:                        throws org.apache.xmlbeans.XmlException {
331:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
332:                            .getContextTypeLoader().parse(node, type, null);
333:                }
334:
335:                public static org.w3.ns.wsdl.BindingOperationType parse(
336:                        org.w3c.dom.Node node,
337:                        org.apache.xmlbeans.XmlOptions options)
338:                        throws org.apache.xmlbeans.XmlException {
339:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
340:                            .getContextTypeLoader().parse(node, type, options);
341:                }
342:
343:                /** @deprecated {@link XMLInputStream} */
344:                public static org.w3.ns.wsdl.BindingOperationType parse(
345:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
346:                        throws org.apache.xmlbeans.XmlException,
347:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
348:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
349:                            .getContextTypeLoader().parse(xis, type, null);
350:                }
351:
352:                /** @deprecated {@link XMLInputStream} */
353:                public static org.w3.ns.wsdl.BindingOperationType parse(
354:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
355:                        org.apache.xmlbeans.XmlOptions options)
356:                        throws org.apache.xmlbeans.XmlException,
357:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
358:                    return (org.w3.ns.wsdl.BindingOperationType) org.apache.xmlbeans.XmlBeans
359:                            .getContextTypeLoader().parse(xis, type, options);
360:                }
361:
362:                /** @deprecated {@link XMLInputStream} */
363:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
364:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis)
365:                        throws org.apache.xmlbeans.XmlException,
366:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
367:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
368:                            .newValidatingXMLInputStream(xis, type, null);
369:                }
370:
371:                /** @deprecated {@link XMLInputStream} */
372:                public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(
373:                        org.apache.xmlbeans.xml.stream.XMLInputStream xis,
374:                        org.apache.xmlbeans.XmlOptions options)
375:                        throws org.apache.xmlbeans.XmlException,
376:                        org.apache.xmlbeans.xml.stream.XMLStreamException {
377:                    return org.apache.xmlbeans.XmlBeans.getContextTypeLoader()
378:                            .newValidatingXMLInputStream(xis, type, options);
379:                }
380:
381:                private Factory() {
382:                } // No instance of this class allowed
383:            }
384:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.