| com.sun.jbi.wsdl2.Binding
All known Subclasses: com.sun.jbi.wsdl2.impl.Binding,
Method Summary | |
BindingFault | addNewBindingFault(InterfaceFault ref) Create a new binding fault, appending it to this binding's faults
list. | BindingOperation | addNewOperation() Create a new operation, appending it to this binding's operations
list. | void | appendFault(BindingFault theFault) Append an item to faults bound by this binding definition. | void | appendOperation(BindingOperation theOperation) Append an item to named binding operations, if any. | BindingFault | getFault(int index) Get faults bound by this binding definition by indexed position. | int | getFaultsLength() Get the number of BindingFault items in faults. | Interface | getInterface() Get interface being bound by this binding definition, if any. | String | getName() Get local name of this binding component. | BindingOperation | getOperation(int index) Get named binding operations, if any by indexed position. | int | getOperationsLength() Get the number of BindingOperation items in operations. | QName | getQName() Get qualified name of this component. | String | getTargetNamespace() Get target namespace of this binding. | String | getType() Get URI indicating the type of this binding. | BindingFault | removeFault(int index) Remove faults bound by this binding definition by index position. | BindingOperation | removeOperation(int index) Remove named binding operations, if any by index position. | void | setFault(int index, BindingFault theFault) Set faults bound by this binding definition by indexed position. | void | setInterface(Interface theInterface) Set interface being bound by this binding definition, if any. | void | setName(String theName) Set local name of this binding component. | void | setOperation(int index, BindingOperation theOperation) Set named binding operations, if any by indexed position. | void | setType(String theType) | DocumentFragment | toXmlDocumentFragment() Return this binding as a DOM document fragment. | String | toXmlString() Return this WSDL binding as an XML string. |
addNewBindingFault | BindingFault addNewBindingFault(InterfaceFault ref)(Code) | | Create a new binding fault, appending it to this binding's faults
list.
Parameters: ref - Interface fault to which the new binding fault adds bindinginformation Newly created binding fault, appended to the faults list. |
addNewOperation | BindingOperation addNewOperation()(Code) | | Create a new operation, appending it to this binding's operations
list.
Newly created operation, appended to this binding's operationlist. |
appendFault | void appendFault(BindingFault theFault)(Code) | | Append an item to faults bound by this binding definition.
Parameters: theFault - Item to append to faults |
appendOperation | void appendOperation(BindingOperation theOperation)(Code) | | Append an item to named binding operations, if any.
Parameters: theOperation - Item to append to operations |
getFault | BindingFault getFault(int index)(Code) | | Get faults bound by this binding definition by indexed position.
Parameters: index - Indexed position value 0..length-1 Faults bound by this binding definition at givenindex position. |
getFaultsLength | int getFaultsLength()(Code) | | Get the number of BindingFault items in faults.
The number of BindingFault items in faults |
getInterface | Interface getInterface()(Code) | | Get interface being bound by this binding definition, if any.
Interface being bound by this binding definition, if any |
getName | String getName()(Code) | | Get local name of this binding component.
Local name of this binding component |
getOperation | BindingOperation getOperation(int index)(Code) | | Get named binding operations, if any by indexed position.
Parameters: index - Indexed position value 0..length-1 Named binding operations, if any at given index position. |
getOperationsLength | int getOperationsLength()(Code) | | Get the number of BindingOperation items in operations.
The number of BindingOperation items in operations |
getQName | QName getQName()(Code) | | Get qualified name of this component.
Qualified name of this component |
getTargetNamespace | String getTargetNamespace()(Code) | | Get target namespace of this binding.
Target namespace of this binding |
getType | String getType()(Code) | | Get URI indicating the type of this binding.
URI indicating the type of this binding |
removeFault | BindingFault removeFault(int index)(Code) | | Remove faults bound by this binding definition by index position.
Parameters: index - The index position of the fault to remove The BindingFault removed, if any. |
removeOperation | BindingOperation removeOperation(int index)(Code) | | Remove named binding operations, if any by index position.
Parameters: index - The index position of the operation to remove The BindingOperation removed, if any. |
setFault | void setFault(int index, BindingFault theFault)(Code) | | Set faults bound by this binding definition by indexed position.
Parameters: index - Indexed position value (0..length-1) of the item to set Parameters: theFault - Item to add at position index . |
setInterface | void setInterface(Interface theInterface)(Code) | | Set interface being bound by this binding definition, if any.
Parameters: theInterface - Interface being bound by this binding definition,if any |
setName | void setName(String theName)(Code) | | Set local name of this binding component.
Parameters: theName - Local name of this binding component |
setOperation | void setOperation(int index, BindingOperation theOperation)(Code) | | Set named binding operations, if any by indexed position.
Parameters: index - Indexed position value (0..length-1) of the item to set Parameters: theOperation - Item to add at position index . |
setType | void setType(String theType)(Code) | | Set URI indicating the type of this binding
Parameters: theType - URI indicating the type of this binding |
toXmlDocumentFragment | DocumentFragment toXmlDocumentFragment()(Code) | | Return this binding as a DOM document fragment. The DOM subtree is a
copy; altering it will not affect this binding.
This binding, as a DOM document fragment. |
toXmlString | String toXmlString()(Code) | | Return this WSDL binding as an XML string.
This binding, serialized as an XML string. |
|
|