Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.beast.project.template.dao.mapper; import java.sql.ResultSet; import java.sql.SQLException; import org.springframework.dao.DataAccessException; import org.springframework.jdbc.core.ResultSetExtractor; /** * * @author u329022 */ public class PersonExtractor implements ResultSetExtractor<Object> { @Override public Object extractData(ResultSet rs) throws SQLException, DataAccessException { return null; } }