01: package groovy.sql; 02: 03: /** 04: * @author rfuller 05: * 06: * A typed parameter to pass to a query 07: */ 08: public interface InParameter { 09: 10: /** 11: * The JDBC data type. 12: */ 13: public int getType(); 14: 15: /** 16: * The object holding the data value. 17: */ 18: public Object getValue(); 19: }