Package org.acplt.oncrpc.apps.jrpcgen
Class JrpcgenProcedureInfo
java.lang.Object
org.acplt.oncrpc.apps.jrpcgen.JrpcgenProcedureInfo
The
JrpcgenProcedureInfo
class contains information about a
specific version of an ONC/RPC program as defined in an rpcgen "x"-file.- Version:
- $Revision: 1.3 $ $Date: 2003/08/14 11:26:50 $ $State: Exp $ $Locker: $
- Author:
- Harald Albrecht
-
Field Summary
FieldsModifier and TypeFieldDescriptionParameter(s) to the remote procedure.Identifier assigned to the procedure number of an a particular procedure of a particular version of an ONC/RPC program.Procedure number assigned to the procedure of a particular verions of an ONC/RPC program.Type specifier of the result returned by the remote procedure. -
Constructor Summary
ConstructorsConstructorDescriptionJrpcgenProcedureInfo
(String procedureId, String procedureNumber, String resultType, Vector parameters) Constructs a newJrpcgenProcedureInfo
object containing information about a programs' version and a set of procedures defined by this program version. -
Method Summary
-
Field Details
-
procedureNumber
Procedure number assigned to the procedure of a particular verions of an ONC/RPC program. This attribute contains either an integer literal or an identifier (which must resolve to an integer). -
procedureId
Identifier assigned to the procedure number of an a particular procedure of a particular version of an ONC/RPC program. -
resultType
Type specifier of the result returned by the remote procedure. -
parameters
Parameter(s) to the remote procedure.
-
-
Constructor Details
-
JrpcgenProcedureInfo
public JrpcgenProcedureInfo(String procedureId, String procedureNumber, String resultType, Vector parameters) Constructs a newJrpcgenProcedureInfo
object containing information about a programs' version and a set of procedures defined by this program version.- Parameters:
procedureId
- Identifier assigned to the procedure of a particular version of an ONC/RPC program.procedureNumber
- Procedure number assigned to remote procedure.resultType
- Type specifier of result returned by remote procedure.parameters
- Type specifier of parameter to the remote procedure.
-