oracle.wsdl.internal
Interface Operation

All Superinterfaces:
Documentable, Namable, java.io.Serializable, WSDLElement

public interface Operation
extends WSDLElement, Namable, Documentable

Operation represents the WSDL Operation definition.


Method Summary
TypeMethod
 void addFault(Fault fault)
          Add a fault
 Fault getFault(java.lang.String name)
          Get the fault with specified name
 java.util.Map getFaults()
          Get all the faults
 Input getInput()
          Get the input of this operation
 Output getOutput()
          Get the output of this operation
 java.lang.String[] getParameterOrder()
          Get the paramter order
 void removeFault(java.lang.String name)
          Remove the fault with the specified name
 void setInput(Input input)
          Set the input of this operation
 void setOutput(Output output)
          Set the output of this operation
 void setParameterOrder(java.lang.String[] params)
          Set parameter order
 
Methods inherited from interface oracle.wsdl.internal.WSDLElement
getOwnerDefinitions, getParent, serialize
 
Methods inherited from interface oracle.wsdl.internal.Namable
getName, setName
 
Methods inherited from interface oracle.wsdl.internal.Documentable
getDocumentation, setDocumentation
 

Method Detail

getParameterOrder

public java.lang.String[] getParameterOrder()
Get the paramter order
Returns:
the order list of parameter names; return null if not defined.

setParameterOrder

public void setParameterOrder(java.lang.String[] params)
Set parameter order
Parameters:
params - the ordered list of parameter names

getInput

public Input getInput()
Get the input of this operation
Returns:
input

setInput

public void setInput(Input input)
Set the input of this operation
Parameters:
input - the input to set

getOutput

public Output getOutput()
Get the output of this operation
Returns:
output

setOutput

public void setOutput(Output output)
Set the output of this operation
Parameters:
output - the output to set

getFaults

public java.util.Map getFaults()
Get all the faults
Returns:
a map from name of fault to Fault object

getFault

public Fault getFault(java.lang.String name)
Get the fault with specified name
Returns:
fault

addFault

public void addFault(Fault fault)
Add a fault
Parameters:
fault - the fault to add

removeFault

public void removeFault(java.lang.String name)
Remove the fault with the specified name
Parameters:
name - the name of fault to remove


Copyright © 2001 Oracle SOAP. All Rights Reserved.