1
2 package groovy.sql;
3
4 /***
5 * @author rfuller
6 *
7 * A typed parameter to pass to a query
8 */
9 public interface InParameter {
10
11 /***
12 * The JDBC data type.
13 */
14 public int getType();
15
16 /***
17 * The object holding the data value.
18 */
19 public Object getValue();
20 }