com.distinct.rpc
Class XDRlong

java.lang.Object
  |
  +--com.distinct.rpc.XDRlong
All Implemented Interfaces:
java.io.Serializable, XDRType, XMLRPCType

public class XDRlong
extends java.lang.Object
implements XDRType, XMLRPCType

This wrapper class is used to encode or decode a parameter of type long to or from an XDRStream.

See Also:
Serialized Form

Field Summary
 long value
           
 
Constructor Summary
XDRlong()
          Crates an object of class XDRlong with unintialized value.
XDRlong(long val)
          Crates an object of class XDRlong and initializes it with a long.
 
Method Summary
 void obj_decode(java.lang.Object obj)
          Decodes an object of class XDRlong from an Integer object.
 java.lang.Object obj_encode()
          Encodes an object of class XDRlong into an Integer object.
 void xdr_decode(XDRStream xdrs)
          Decodes an object of class XDRlong in compliance to RFC 1832 (XDR).
 void xdr_encode(XDRStream xdrs)
          Encodes an object of class XDRlong in compliance to RFC 1832 (XDR).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

value

public long value
Constructor Detail

XDRlong

public XDRlong()
Crates an object of class XDRlong with unintialized value.


XDRlong

public XDRlong(long val)
Crates an object of class XDRlong and initializes it with a long.

Parameters:
val - The value.
Method Detail

xdr_encode

public void xdr_encode(XDRStream xdrs)
Encodes an object of class XDRlong in compliance to RFC 1832 (XDR).

Specified by:
xdr_encode in interface XDRType
Parameters:
xdrs - The XDR output stream.

xdr_decode

public void xdr_decode(XDRStream xdrs)
                throws RPCError
Decodes an object of class XDRlong in compliance to RFC 1832 (XDR).

Specified by:
xdr_decode in interface XDRType
Parameters:
xdrs - The XDR input stream.
Throws:
RPCError - When the call fails for any reason.

obj_encode

public java.lang.Object obj_encode()
Encodes an object of class XDRlong into an Integer object.

Specified by:
obj_encode in interface XMLRPCType
Throws:
RPCError - When the call fails for any reason.

obj_decode

public void obj_decode(java.lang.Object obj)
                throws RPCError
Decodes an object of class XDRlong from an Integer object.

Specified by:
obj_decode in interface XMLRPCType
Throws:
RPCError - When the call fails for any reason.