public interface JavaCallInfo
On the server or service provider side, a SOAP request message is deserialized to a JavaCallInfo object which can be used to determine which method to call, and get the parameter values to call the back-end service implementation object. The return value or exception returned from the service implementation should be set to the JavaCallInfo object which then can be used to serialize to a A SOAP response or fault message to be sent back to the service client.
Modifier and Type | Method and Description |
---|---|
Throwable |
getException()
Gets the exception of this JavaCallInfo
|
Method |
getMethod()
Gets the method of this JavaCallInfo
|
Object[] |
getParameters()
Gets the parameters of this JavaCallInfo
|
Object |
getReturnValue()
Gets the returnValue of this JavaCallInfo
|
void |
setException(Throwable exception)
Sets the exception of this JavaCallInfo
|
void |
setReturnValue(Object returnValue)
Sets the returnValue of this JavaCallInfo
|
Method getMethod()
Object[] getParameters()
Object getReturnValue()
void setReturnValue(Object returnValue)
returnValue
- the returnValue to setThrowable getException()
void setException(Throwable exception)
exception
- the exception to setCopyright © 2017 Oracle Corporation. All rights reserved.