Uses of Class
org.acplt.oncrpc.XdrDecodingStream

Packages that use XdrDecodingStream
org.acplt.oncrpc Sun's ONC/RPC Remote Procedure Call mechanism. 
org.acplt.oncrpc.server ONC/RPC Server support package. 
 

Uses of XdrDecodingStream in org.acplt.oncrpc
 

Subclasses of XdrDecodingStream in org.acplt.oncrpc
 class XdrBufferDecodingStream
          The XdrBufferDecodingStream class provides the necessary functionality to XdrDecodingStream to retrieve XDR packets from a byte buffer.
 class XdrHttpDecodingStream
          The XdrHttpDecodingStream class provides the necessary functionality to XdrDecodingStream to receive XDR data through HTTP tunnels.
 class XdrTcpDecodingStream
          The XdrTcpDecodingStream class provides the necessary functionality to XdrDecodingStream to receive XDR records from the network using the stream-oriented TCP/IP.
 class XdrUdpDecodingStream
          The XdrUdpDecodingStream class provides the necessary functionality to XdrDecodingStream to receive XDR packets from the network using the datagram-oriented UDP/IP.
 

Methods in org.acplt.oncrpc with parameters of type XdrDecodingStream
 void XdrShort.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR short from a XDR stream in compliance to RFC 1832.
 void XdrVoid.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a void from a XDR stream in compliance to RFC 1832.
 void XdrOpaque.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR opaque from a XDR stream in compliance to RFC 1832.
 void XdrInt.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR int from a XDR stream in compliance to RFC 1832.
 void XdrLong.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR long from a XDR stream in compliance to RFC 1832.
 void XdrBoolean.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR boolean from a XDR stream in compliance to RFC 1832.
 void OncRpcClientReplyMessage.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a ONC/RPC message header object from a XDR stream.
 void XdrByte.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR byte from a XDR stream in compliance to RFC 1832.
 void XdrDynamicOpaque.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR opaque from a XDR stream in compliance to RFC 1832.
 void XdrDouble.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR double from a XDR stream in compliance to RFC 1832.
 void XdrFloat.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR float from a XDR stream in compliance to RFC 1832.
 void XdrChar.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR char from a XDR stream in compliance to RFC 1832.
 void XdrString.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR string from a XDR stream in compliance to RFC 1832.
 void XdrUnion.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- an object from a XDR stream in compliance to RFC 1832.
 void XdrAble.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- an object from a XDR stream in compliance to RFC 1832.
 void OncRpcGetPortResult.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- an OncRpcGetPortParams object from a XDR stream.
 void OncRpcDumpResult.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- the result from a PMAP_DUMP remote procedure call from a XDR stream.
 void OncRpcServerIdent.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- an OncRpcServerIdent object from a XDR stream.
 void XdrBytes.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a XDR bytes value from a XDR stream in compliance to RFC 1832.
abstract  void XdrUnion.xdrDecodeCommon(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- the common part of an object from a XDR stream in compliance to RFC 1832.
abstract  void XdrUnion.xdrDecodeVariant(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- the variant part of an object from a XDR stream in compliance to RFC 1832.
protected  void OncRpcClientAuthUnix.xdrDecodeVerf(XdrDecodingStream xdr)
          Decodes ONC/RPC authentication information in form of a verifier when receiving an ONC/RPC reply message.
protected abstract  void OncRpcClientAuth.xdrDecodeVerf(XdrDecodingStream xdr)
          Decodes ONC/RPC authentication information in form of a verifier when receiving an ONC/RPC reply message.
protected  void OncRpcClientAuthNone.xdrDecodeVerf(XdrDecodingStream xdr)
          Decodes ONC/RPC authentication information in form of a verifier when receiving an ONC/RPC reply message.
 

Constructors in org.acplt.oncrpc with parameters of type XdrDecodingStream
OncRpcServerIdent(XdrDecodingStream xdr)
          Constructs an OncRpcServerIdent object and restores its state from the given XDR stream.
 

Uses of XdrDecodingStream in org.acplt.oncrpc.server
 

Methods in org.acplt.oncrpc.server that return XdrDecodingStream
protected  XdrDecodingStream OncRpcTcpConnectionServerTransport.getXdrDecodingStream()
          Returns XDR stream which can be used for deserializing the parameters of this ONC/RPC call.
protected abstract  XdrDecodingStream OncRpcServerTransport.getXdrDecodingStream()
          Returns XDR stream which can be used for deserializing the parameters of this ONC/RPC call.
protected  XdrDecodingStream OncRpcTcpServerTransport.getXdrDecodingStream()
          Do not call.
protected  XdrDecodingStream OncRpcUdpServerTransport.getXdrDecodingStream()
          Returns XDR stream which can be used for deserializing the parameters of this ONC/RPC call.
 XdrDecodingStream OncRpcCallInformation.getXdrDecodingStream()
          Returns XDR stream which can be used for deserializing the parameters of this ONC/RPC call.
 

Methods in org.acplt.oncrpc.server with parameters of type XdrDecodingStream
 void OncRpcServerCallMessage.xdrDecode(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- a ONC/RPC message header object from a XDR stream according to RFC 1831.
 void OncRpcServerAuthShort.xdrDecodeCredVerf(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- an ONC/RPC authentication object (credential & verifier) on the server side.
 void OncRpcServerAuthNone.xdrDecodeCredVerf(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- an ONC/RPC authentication object (credential & verifier) on the server side.
 void OncRpcServerAuthUnix.xdrDecodeCredVerf(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- an ONC/RPC authentication object (credential & verifier) on the server side.
abstract  void OncRpcServerAuth.xdrDecodeCredVerf(XdrDecodingStream xdr)
          Decodes -- that is: deserializes -- an ONC/RPC authentication object (credential & verifier) on the server side.
static OncRpcServerAuth OncRpcServerAuth.xdrNew(XdrDecodingStream xdr, OncRpcServerAuth recycle)
          Restores (deserializes) an authentication object from an XDR stream.
 

Constructors in org.acplt.oncrpc.server with parameters of type XdrDecodingStream
OncRpcServerAuthShort(XdrDecodingStream xdr)
          Constructs an OncRpcServerAuthShort object and pulls its state off an XDR stream.
OncRpcServerAuthUnix(XdrDecodingStream xdr)
          Constructs an OncRpcServerAuthUnix object and pulls its state off an XDR stream.
 



Copyright © 2011. All Rights Reserved.