001 002 package groovy.sql; 003 004 /** 005 * @author rfuller 006 * 007 * A parameter to be returned from a CallableStatement. 008 */ 009 public interface OutParameter { 010 /** 011 * Get the JDBC datatype for this parameter. 012 */ 013 public int getType(); 014 }