Package org.acplt.oncrpc
Interface OncRpcMessageType
public interface OncRpcMessageType
A collection of constants used for ONC/RPC messages to identify the
type of message. Currently, ONC/RPC messages can be either calls or
replies. Calls are sent by ONC/RPC clients to servers to call a remote
procedure (for you "ohohpies" that can be translated into the buzzword
"method"). A server then will answer with a corresponding reply message
(but not in the case of batched calls).
- Version:
- $Revision: 1.1.1.1 $ $Date: 2003/08/13 12:03:41 $ $State: Exp $ $Locker: $
- Author:
- Harald Albrecht
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Identifies an ONC/RPC call.static final int
Identifies an ONC/RPC reply.
-
Field Details
-
ONCRPC_CALL
static final int ONCRPC_CALLIdentifies an ONC/RPC call. By a "call" a client request that a server carries out a particular remote procedure.- See Also:
-
ONCRPC_REPLY
static final int ONCRPC_REPLYIdentifies an ONC/RPC reply. A server responds with a "reply" after a client has sent a "call" for a particular remote procedure, sending back the results of calling that procedure.- See Also:
-