public class

TBindingOperation

extends TExtensibleDocumented
java.lang.Object
   ↳ org.xmlsoap.schemas.wsdl.TDocumented
     ↳ org.xmlsoap.schemas.wsdl.TExtensibleDocumented
       ↳ org.xmlsoap.schemas.wsdl.TBindingOperation

Class Overview

Java class for tBindingOperation complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="tBindingOperation">
   <complexContent>
     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibleDocumented">
       <sequence>
         <element name="input" type="{http://schemas.xmlsoap.org/wsdl/}tBindingOperationMessage" minOccurs="0"/>
         <element name="output" type="{http://schemas.xmlsoap.org/wsdl/}tBindingOperationMessage" minOccurs="0"/>
         <element name="fault" type="{http://schemas.xmlsoap.org/wsdl/}tBindingOperationFault" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
     </extension>
   </complexContent>
 </complexType>
 

Summary

Fields
protected List<TBindingOperationFault> fault
protected TBindingOperationMessage input
protected String name
protected TBindingOperationMessage output
[Expand]
Inherited Fields
From class org.xmlsoap.schemas.wsdl.TExtensibleDocumented
From class org.xmlsoap.schemas.wsdl.TDocumented
Public Constructors
TBindingOperation()
Public Methods
List<TBindingOperationFault> getFault()
Gets the value of the fault property.
TBindingOperationMessage getInput()
Gets the value of the input property.
String getName()
Gets the value of the name property.
TBindingOperationMessage getOutput()
Gets the value of the output property.
void setInput(TBindingOperationMessage value)
Sets the value of the input property.
void setName(String value)
Sets the value of the name property.
void setOutput(TBindingOperationMessage value)
Sets the value of the output property.
[Expand]
Inherited Methods
From class org.xmlsoap.schemas.wsdl.TExtensibleDocumented
From class org.xmlsoap.schemas.wsdl.TDocumented
From class java.lang.Object

Fields

protected List<TBindingOperationFault> fault

protected TBindingOperationMessage input

protected String name

protected TBindingOperationMessage output

Public Constructors

public TBindingOperation ()

Public Methods

public List<TBindingOperationFault> getFault ()

Gets the value of the fault property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the fault property.

For example, to add a new item, do as follows:

    getFault().add(newItem);
 

Objects of the following type(s) are allowed in the list TBindingOperationFault

public TBindingOperationMessage getInput ()

Gets the value of the input property.

Returns

public String getName ()

Gets the value of the name property.

Returns
  • possible object is String

public TBindingOperationMessage getOutput ()

Gets the value of the output property.

Returns

public void setInput (TBindingOperationMessage value)

Sets the value of the input property.

Parameters
value Allowed object is TBindingOperationMessage

public void setName (String value)

Sets the value of the name property.

Parameters
value Allowed object is String

public void setOutput (TBindingOperationMessage value)

Sets the value of the output property.

Parameters
value Allowed object is TBindingOperationMessage