org.solovyev.common.db.AbstractSQLProducer Maven / Gradle / Ivy
The newest version!
package org.solovyev.common.db;
/**
* User: serso
* Date: Oct 16, 2009
* Time: 12:37:57 AM
*/
public abstract class AbstractSQLProducer implements SQLProducer {
protected SQLQuery query = new SQLQueryImpl();
public SQLQuery getQuery() {
return query;
}
}