001 package groovy.sql;
002 /**
003 * Identifies a variable to be expanded into the
004 * sql string rather than representing a placeholder.
005 * @author rfuller
006 *
007 */
008 public interface ExpandedVariable {
009 public Object getObject();
010 }