com.jporm.rm.spring.ResultSetReaderWrapper Maven / Gradle / Ivy
/*******************************************************************************
* Copyright 2013 Francesco Cina'
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package com.jporm.rm.spring;
import java.sql.SQLException;
import java.util.function.Function;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.ResultSetExtractor;
import com.jporm.commons.core.io.jdbc.JdbcResultSet;
import com.jporm.types.io.ResultSet;
/**
*
* @author Francesco Cina
*
* 02/lug/2011
*/
public class ResultSetReaderWrapper implements ResultSetExtractor {
private final Function rse;
public ResultSetReaderWrapper(final Function rse) {
this.rse = rse;
}
@Override
public T extractData(final java.sql.ResultSet rs) throws SQLException, DataAccessException {
return rse.apply(new JdbcResultSet(rs));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy