01: package groovy.sql; 02: 03: /** 04: * @author rfuller 05: * 06: * A typed parameter passed to, and returned from a CallableStatement. 07: */ 08: public interface InOutParameter extends InParameter, OutParameter { 09: 10: }