javax.wsdl
Interface Binding

All Superinterfaces:
java.io.Serializable

public interface Binding
extends java.io.Serializable

This interface represents a port type binding and describes the protocol required for using operations in a port type.

Component:
WSDL-API interfaces

Method Summary
 void addBindingOperation(BindingOperation bindingOperation)
          Add an operation binding to binding.
 void addExtensibilityElement(ExtensibilityElement extElement)
          Add an extensibility element.
 BindingOperation getBindingOperation(java.lang.String name, java.lang.String inputName, java.lang.String outputName)
          Get the specified operation binding.
 java.util.List getBindingOperations()
          Get all the operation bindings defined here.
 org.w3c.dom.Element getDocumentationElement()
          Get the documentation element.
 java.util.List getExtensibilityElements()
          Get all the extensibility elements defined here.
 PortType getPortType()
          Get the port type this is a binding for.
 QName getQName()
          Get the name of this binding.
 boolean isUndefined()
           
 void setDocumentationElement(org.w3c.dom.Element docEl)
          Set the documentation element for this document.
 void setPortType(PortType portType)
          Set the port type this is a binding for.
 void setQName(QName name)
          Set the name of this binding.
 void setUndefined(boolean isUndefined)
           
 

Method Detail

setQName

public void setQName(QName name)
Set the name of this binding.

Parameters:
name - the desired name

getQName

public QName getQName()
Get the name of this binding.

Returns:
the binding name

setPortType

public void setPortType(PortType portType)
Set the port type this is a binding for.

Parameters:
portType - the port type associated with this binding

getPortType

public PortType getPortType()
Get the port type this is a binding for.

Returns:
the associated port type

addBindingOperation

public void addBindingOperation(BindingOperation bindingOperation)
Add an operation binding to binding.

Parameters:
bindingOperation - the operation binding to be added

getBindingOperation

public BindingOperation getBindingOperation(java.lang.String name,
                                            java.lang.String inputName,
                                            java.lang.String outputName)
Get the specified operation binding. Note that operation names can be overloaded within a PortType. In case of overloading, the names of the input and output messages can be used to further refine the search.

Parameters:
name - the name of the desired operation binding.
inputName - the name of the input message; if this is null it will be ignored.
outputName - the name of the output message; if this is null it will be ignored.
Returns:
the corresponding operation binding, or null if there wasn't any matching operation binding

getBindingOperations

public java.util.List getBindingOperations()
Get all the operation bindings defined here.


setDocumentationElement

public void setDocumentationElement(org.w3c.dom.Element docEl)
Set the documentation element for this document. This dependency on org.w3c.dom.Element should eventually be removed when a more appropriate way of representing this information is employed.

Parameters:
docEl - the documentation element

getDocumentationElement

public org.w3c.dom.Element getDocumentationElement()
Get the documentation element. This dependency on org.w3c.dom.Element should eventually be removed when a more appropriate way of representing this information is employed.

Returns:
the documentation element

addExtensibilityElement

public void addExtensibilityElement(ExtensibilityElement extElement)
Add an extensibility element.

Parameters:
extElement - the extensibility element to be added

getExtensibilityElements

public java.util.List getExtensibilityElements()
Get all the extensibility elements defined here.


setUndefined

public void setUndefined(boolean isUndefined)

isUndefined

public boolean isUndefined()