org.acplt.oncrpc.apps.jrpcgen
Class JrpcgenProcedureInfo
java.lang.Object
|
+--org.acplt.oncrpc.apps.jrpcgen.JrpcgenProcedureInfo
- class JrpcgenProcedureInfo
- extends java.lang.Object
The JrpcgenProcedureInfo class contains information about a
specific version of an ONC/RPC program as defined in an rpcgen "x"-file.
|
Field Summary |
java.lang.String |
parameterType
Type specifier of the parameter to the remote procedure. |
java.lang.String |
procedureId
Identifier assigned to the procedure number of an a particular
procedure of a particular version of an ONC/RPC program. |
java.lang.String |
procedureNumber
Procedure number assigned to the procedure of a particular verions of
an ONC/RPC program. |
java.lang.String |
resultType
Type specifier of the result returned by the remote procedure. |
|
Constructor Summary |
JrpcgenProcedureInfo(java.lang.String procedureId,
java.lang.String procedureNumber,
java.lang.String resultType,
java.lang.String parameterType)
Constructs a new JrpcgenProcedureInfo object containing
information about a programs' version and a set of procedures
defined by this program version. |
| Methods inherited from class java.lang.Object |
,
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
registerNatives,
toString,
wait,
wait,
wait |
procedureNumber
public java.lang.String 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
public java.lang.String procedureId
- Identifier assigned to the procedure number of an a particular
procedure of a particular version of an ONC/RPC program.
resultType
public java.lang.String resultType
- Type specifier of the result returned by the remote procedure.
parameterType
public java.lang.String parameterType
- Type specifier of the parameter to the remote procedure.
JrpcgenProcedureInfo
public JrpcgenProcedureInfo(java.lang.String procedureId,
java.lang.String procedureNumber,
java.lang.String resultType,
java.lang.String parameterType)
- Constructs a new
JrpcgenProcedureInfo 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.parameterType - Type specifier of parameter to the remote procedure.