| java.lang.Object com.sun.portal.providers.simplewebservice.SimpleWebServiceState
SimpleWebServiceState | public class SimpleWebServiceState implements Serializable(Code) | | This class holds a pair of input/output params used to invoke a web service
method. Any processing exception that occurs is also stored in the state.
|
SimpleWebServiceState | public SimpleWebServiceState(SimpleWebServiceParameter[] input, SimpleWebServiceParameter output, SimpleWebServiceProcessException ex)(Code) | | Default constructor.
Parameters: input - an array of SimpleWebServiceParameters thatrepresent the web service input. Parameters: output - an instance of a SimpleWebServiceParameter thatrepresents the web service output. Parameters: ex - an instance of a SimpleWebServiceProcessException thatrepresents any error that happend when invoking the webservice. |
getInputState | public SimpleWebServiceParameter[] getInputState()(Code) | | Returns the input parameters.
an array of SimpleWebServiceParameters thatrepresent the web service input. |
getOutputState | public SimpleWebServiceParameter getOutputState()(Code) | | Returns the output from a web service invocation.
an instance of a SimpleWebServiceParameter thatrepresents the web service output. |
getProcessError | public SimpleWebServiceProcessException getProcessError()(Code) | | Gets the SimpleWebServiceProcessException, if any that resulted because
of invoking a webservice method.
any SimpleWebServiceProcessException thatmay have occured in invoking the web service.. |
isError | public boolean isError()(Code) | | Returns true if invocation resulted in a exception.
true if any error occured in invoking the web service,false, if not. |
|
|