public class

TBinding

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

Class Overview

Java class for tBinding complex type.

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

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

Summary

Fields
protected String name
protected List<TBindingOperation> operation
protected QName type
[Expand]
Inherited Fields
From class org.xmlsoap.schemas.wsdl.TExtensibleDocumented
From class org.xmlsoap.schemas.wsdl.TDocumented
Public Constructors
TBinding()
Public Methods
String getName()
Gets the value of the name property.
List<TBindingOperation> getOperation()
Gets the value of the operation property.
QName getType()
Gets the value of the type property.
void setName(String value)
Sets the value of the name property.
void setType(QName value)
Sets the value of the type 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 String name

protected List<TBindingOperation> operation

protected QName type

Public Constructors

public TBinding ()

Public Methods

public String getName ()

Gets the value of the name property.

Returns
  • possible object is String

public List<TBindingOperation> getOperation ()

Gets the value of the operation 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 operation property.

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

    getOperation().add(newItem);
 

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

public QName getType ()

Gets the value of the type property.

Returns
  • possible object is QName

public void setName (String value)

Sets the value of the name property.

Parameters
value Allowed object is String

public void setType (QName value)

Sets the value of the type property.

Parameters
value Allowed object is QName