001 002 package groovy.sql; 003 004 /** 005 * @author rfuller 006 * 007 * A typed parameter to pass to a query 008 */ 009 public interface InParameter { 010 011 /** 012 * The JDBC data type. 013 */ 014 public int getType(); 015 016 /** 017 * The object holding the data value. 018 */ 019 public Object getValue(); 020 }