com.distinct.rpc
Interface XMLRPCType

All Known Implementing Classes:
XDRboolean, XDRchar, XDRdouble, XDRfloat, XDRint, XDRlong, XDRshort, XDRstring

public interface XMLRPCType

Defines the interface for all classes that implement types that can be written to or read from XML-RPC.

See Also:
XDRStream

Method Summary
 void obj_decode(java.lang.Object obj)
          Decodes an object of this class from the XMLRPC standard format.
 java.lang.Object obj_encode()
          Encodes an object of this class to the XMLRPC standard format.
 

Method Detail

obj_decode

public void obj_decode(java.lang.Object obj)
                throws RPCError
Decodes an object of this class from the XMLRPC standard format.

Throws:
RPCError - When the call fails for any reason.

obj_encode

public java.lang.Object obj_encode()
Encodes an object of this class to the XMLRPC standard format.

Throws:
RPCError - When the call fails for any reason.