org.beast.project.template.dao.mapper.PersonExtractor.java Source code

Java tutorial

Introduction

Here is the source code for org.beast.project.template.dao.mapper.PersonExtractor.java

Source

/*
 * 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;
    }

}