Package org.acplt.oncrpc
Class OncRpcGetPortResult
- java.lang.Object
-
- org.acplt.oncrpc.OncRpcGetPortResult
-
- All Implemented Interfaces:
XdrAble
public class OncRpcGetPortResult extends java.lang.Object implements XdrAble
TheOncRpcGetPortResult
class represents the result from a PMAP_GETPORT remote procedure call to the ONC/RPC portmapper.- Version:
- $Revision: 1.1.1.1 $ $Date: 2003/08/13 12:03:41 $ $State: Exp $ $Locker: $
- Author:
- Harald Albrecht
-
-
Field Summary
Fields Modifier and Type Field Description int
port
The port number of the ONC/RPC in question.
-
Constructor Summary
Constructors Constructor Description OncRpcGetPortResult()
Default constructor for initializing anOncRpcGetPortParams
result object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
xdrDecode(XdrDecodingStream xdr)
Decodes -- that is: deserializes -- anOncRpcGetPortParams
object from a XDR stream.void
xdrEncode(XdrEncodingStream xdr)
Encodes -- that is: serializes -- anOncRpcGetPortParams
object into a XDR stream.
-
-
-
Method Detail
-
xdrEncode
public void xdrEncode(XdrEncodingStream xdr) throws OncRpcException, java.io.IOException
Encodes -- that is: serializes -- anOncRpcGetPortParams
object into a XDR stream.- Specified by:
xdrEncode
in interfaceXdrAble
- Parameters:
xdr
- XDR stream to which information is sent for encoding.- Throws:
OncRpcException
- if an ONC/RPC error occurs.java.io.IOException
- if an I/O error occurs.
-
xdrDecode
public void xdrDecode(XdrDecodingStream xdr) throws OncRpcException, java.io.IOException
Decodes -- that is: deserializes -- anOncRpcGetPortParams
object from a XDR stream.- Specified by:
xdrDecode
in interfaceXdrAble
- Parameters:
xdr
- XDR stream from which decoded information is retrieved.- Throws:
OncRpcException
- if an ONC/RPC error occurs.java.io.IOException
- if an I/O error occurs.
-
-