Package org.exbin.xbup.core.remote
Interface XBProcedureDecl
-
public interface XBProcedureDecl
Procedure declaration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XBBlockDecl
getBlockDecl()
Returns block declaration representing this procedure.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.
-
-
-
Method Detail
-
getBlockDecl
XBBlockDecl getBlockDecl()
Returns block declaration representing this procedure.- Returns:
- block declaration
-
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
-
-