
rapture.table.postgres.PostgresWhereClause Maven / Gradle / Ivy
/**
* Copyright (C) 2011-2015 Incapture Technologies LLC
*
* This is an autogenerated license statement. When copyright notices appear below
* this one that copyright supercedes this statement.
*
* Unless required by applicable law or agreed to in writing, software is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied.
*
* Unless explicit permission obtained in writing this software cannot be distributed.
*/
package rapture.table.postgres;
import org.springframework.jdbc.core.namedparam.MapSqlParameterSource;
/**
* @author bardhi
* @since 4/14/15.
*/
public class PostgresWhereClause {
public String getSql() {
return sql;
}
public void setSql(String sql) {
this.sql = sql;
}
private String sql;
private MapSqlParameterSource parameterSource;
public MapSqlParameterSource getParameterSource() {
return parameterSource;
}
public void setParameterSource(MapSqlParameterSource parameterSource) {
this.parameterSource = parameterSource;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy