01: package groovy.sql; 02: 03: /** 04: * Identifies a variable to be expanded into the 05: * sql string rather than representing a placeholder. 06: * @author rfuller 07: * 08: */ 09: public interface ExpandedVariable { 10: public Object getObject(); 11: }