Package org.exbin.xbup.core.remote
Interface XBProcedureDef
-
public interface XBProcedureDef
XBUP level 1 RPC procedure definition interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XBBlockDecl
getParameterType()
Returns type of input data parameter.XBBlockDecl
getReturnType()
Returns type of output data returned as result.XBBlockDecl
getStatusType()
Returns type of status data for reporting proper execution or exception.XBBlockType
getType()
Returns type of this procedure.
-
-
-
Method Detail
-
getType
XBBlockType getType()
Returns type of this procedure.- Returns:
- type of this procedure
-
getParameterType
XBBlockDecl getParameterType()
Returns type of input data parameter.- Returns:
- declaration of input type
-
getReturnType
XBBlockDecl getReturnType()
Returns type of output data returned as result.- Returns:
- declaration of output type
-
getStatusType
XBBlockDecl getStatusType()
Returns type of status data for reporting proper execution or exception.- Returns:
- declaration of execution status type
-
-