com.flat502.rox.marshal
Interface RpcResponse

All Superinterfaces:
RpcMethod
All Known Subinterfaces:
RpcFault
All Known Implementing Classes:
AbstractRpcResponse, XmlRpcMethodFault, XmlRpcMethodResponse

public interface RpcResponse
extends RpcMethod

An interface representing a generalized RPC method call response.

This interface is patterned after XML-RPC and essentially encapsulates a single return value.


Method Summary
 java.lang.Object getReturnValue()
          Get the return value for this method call response.
 
Methods inherited from interface com.flat502.rox.marshal.RpcMethod
getContentType, marshal
 

Method Detail

getReturnValue

java.lang.Object getReturnValue()
Get the return value for this method call response.

The range of types this method may return is dependent on the underlying implementation.

Implementations are free to return null but, once again, whether or this is supported is implementation-dependent.

Returns:
The return value for this method call response.