01: package groovy.sql;
02:
03: /**
04: * @author rfuller
05: *
06: * A parameter to be returned from a CallableStatement.
07: */
08: publicinterface OutParameter {
09: /**
10: * Get the JDBC datatype for this parameter.
11: */
12: publicint getType();
13: }