001 /* 002 * XML Type: tBindingOperation 003 * Namespace: http://schemas.xmlsoap.org/wsdl/ 004 * Java type: org.apache.geronimo.xbeans.wsdl.TBindingOperation 005 * 006 * Automatically generated - do not modify. 007 */ 008 package org.apache.geronimo.xbeans.wsdl; 009 010 011 /** 012 * An XML tBindingOperation(@http://schemas.xmlsoap.org/wsdl/). 013 * 014 * This is a complex type. 015 */ 016 public interface TBindingOperation extends org.apache.geronimo.xbeans.wsdl.TExtensibleDocumented 017 { 018 public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schemaorg_apache_xmlbeans.system.sDD32E5A2898F33527024818ADE537D3B.TypeSystemHolder.typeSystem.resolveHandle("tbindingoperation64f9type"); 019 020 /** 021 * Gets the "input" element 022 */ 023 org.apache.geronimo.xbeans.wsdl.TBindingOperationMessage getInput(); 024 025 /** 026 * True if has "input" element 027 */ 028 boolean isSetInput(); 029 030 /** 031 * Sets the "input" element 032 */ 033 void setInput(org.apache.geronimo.xbeans.wsdl.TBindingOperationMessage input); 034 035 /** 036 * Appends and returns a new empty "input" element 037 */ 038 org.apache.geronimo.xbeans.wsdl.TBindingOperationMessage addNewInput(); 039 040 /** 041 * Unsets the "input" element 042 */ 043 void unsetInput(); 044 045 /** 046 * Gets the "output" element 047 */ 048 org.apache.geronimo.xbeans.wsdl.TBindingOperationMessage getOutput(); 049 050 /** 051 * True if has "output" element 052 */ 053 boolean isSetOutput(); 054 055 /** 056 * Sets the "output" element 057 */ 058 void setOutput(org.apache.geronimo.xbeans.wsdl.TBindingOperationMessage output); 059 060 /** 061 * Appends and returns a new empty "output" element 062 */ 063 org.apache.geronimo.xbeans.wsdl.TBindingOperationMessage addNewOutput(); 064 065 /** 066 * Unsets the "output" element 067 */ 068 void unsetOutput(); 069 070 /** 071 * Gets array of all "fault" elements 072 */ 073 org.apache.geronimo.xbeans.wsdl.TBindingOperationFault[] getFaultArray(); 074 075 /** 076 * Gets ith "fault" element 077 */ 078 org.apache.geronimo.xbeans.wsdl.TBindingOperationFault getFaultArray(int i); 079 080 /** 081 * Returns number of "fault" element 082 */ 083 int sizeOfFaultArray(); 084 085 /** 086 * Sets array of all "fault" element 087 */ 088 void setFaultArray(org.apache.geronimo.xbeans.wsdl.TBindingOperationFault[] faultArray); 089 090 /** 091 * Sets ith "fault" element 092 */ 093 void setFaultArray(int i, org.apache.geronimo.xbeans.wsdl.TBindingOperationFault fault); 094 095 /** 096 * Inserts and returns a new empty value (as xml) as the ith "fault" element 097 */ 098 org.apache.geronimo.xbeans.wsdl.TBindingOperationFault insertNewFault(int i); 099 100 /** 101 * Appends and returns a new empty value (as xml) as the last "fault" element 102 */ 103 org.apache.geronimo.xbeans.wsdl.TBindingOperationFault addNewFault(); 104 105 /** 106 * Removes the ith "fault" element 107 */ 108 void removeFault(int i); 109 110 /** 111 * Gets the "name" attribute 112 */ 113 java.lang.String getName(); 114 115 /** 116 * Gets (as xml) the "name" attribute 117 */ 118 org.apache.xmlbeans.XmlNCName xgetName(); 119 120 /** 121 * Sets the "name" attribute 122 */ 123 void setName(java.lang.String name); 124 125 /** 126 * Sets (as xml) the "name" attribute 127 */ 128 void xsetName(org.apache.xmlbeans.XmlNCName name); 129 130 /** 131 * A factory class with static methods for creating instances 132 * of this type. 133 */ 134 135 public static final class Factory 136 { 137 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation newInstance() { 138 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } 139 140 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation newInstance(org.apache.xmlbeans.XmlOptions options) { 141 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } 142 143 /** @param xmlAsString the string value to parse */ 144 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { 145 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } 146 147 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { 148 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } 149 150 /** @param file the file from which to load an xml document */ 151 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { 152 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } 153 154 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { 155 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } 156 157 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { 158 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } 159 160 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { 161 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } 162 163 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { 164 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } 165 166 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { 167 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } 168 169 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { 170 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } 171 172 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException { 173 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } 174 175 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { 176 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } 177 178 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { 179 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } 180 181 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { 182 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } 183 184 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { 185 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } 186 187 /** @deprecated {@link XMLInputStream} */ 188 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { 189 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } 190 191 /** @deprecated {@link XMLInputStream} */ 192 public static org.apache.geronimo.xbeans.wsdl.TBindingOperation parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { 193 return (org.apache.geronimo.xbeans.wsdl.TBindingOperation) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } 194 195 /** @deprecated {@link XMLInputStream} */ 196 public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { 197 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } 198 199 /** @deprecated {@link XMLInputStream} */ 200 public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException { 201 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } 202 203 private Factory() { } // No instance of this class allowed 204 } 205 }