1 2 package groovy.sql; 3 4 /*** 5 * @author rfuller 6 * 7 * A typed parameter passed to, and returned from a CallableStatement. 8 */ 9 public interface InOutParameter extends InParameter, OutParameter { 10 11 }