List of usage examples for org.springframework.jdbc.core RowMapper interface-usage
From source file springmvc.repository.mappers.MultiResultMapper.java
public class MultiResultMapper implements RowMapper<MultiResult> { @Override public MultiResult mapRow(ResultSet rs, int i) throws SQLException { MultiResult multiResult = new MultiResult(); multiResult.setIdResult(rs.getInt("idresult")); multiResult.setScore(rs.getInt("score"));
From source file com.teamexception.reseravationmaven.mapper.ServiceVehicleTypeMapper.java
/** * * @author Tharindu Jayathilake */ public class ServiceVehicleTypeMapper implements RowMapper<VehicleServiceType> { public VehicleServiceType mapRow(ResultSet rs, int rowNum) throws SQLException {
From source file com.teamexception.reseravationmaven.mapper.PredefinedServiceTypeMapper.java
/** * * @author Tharindu Jayathilake */ public class PredefinedServiceTypeMapper implements RowMapper<PredefinedServices> {
From source file com.softserveinc.internetbanking.model.mapper.AccountRowMapper.java
/** * * @author orotar */ public class AccountRowMapper implements RowMapper<Account> {
From source file com.teamexception.reseravationmaven.mapper.PredefinedServicesMapper.java
/** * * @author Tharindu Jayathilake */ public class PredefinedServicesMapper implements RowMapper<PredefinedServices> {
From source file edu.pitt.sis.infsci2730.finalProject.utils.RecordRowMapper.java
/** * * @author yanyanzhou */ public class RecordRowMapper implements RowMapper<RecordDBModel> {
From source file com.teamexception.reseravationmaven.mapper.EquipmentMapper.java
/** * * @author Tharindu Jayathilake */ public class EquipmentMapper implements RowMapper<Equipment> {
From source file edu.pitt.sis.infsci2730.finalProject.utils.AddressRowMapper.java
/** * * @author yanyanzhou */ public class AddressRowMapper implements RowMapper<AddressDBModel> { public AddressDBModel mapRow(ResultSet rs, int index) throws SQLException {
From source file com.healthcit.analytics.dao.rowmapper.UserRowMapper.java
/**
* <code>RowMapper</code> implementation for building <code>User</code> objects.
*
* @author Stanislav Sedavnikh
*
*/
From source file com.healthcit.analytics.dao.rowmapper.ReportTemplateRowMapper.java
public class ReportTemplateRowMapper implements RowMapper<ReportTemplate> { private static final String ID_COLUMN = "id"; private static final String TITLE_COLUMN = "title"; private static final String REPORT_COLUMN = "report"; private static final String TIMESTAMP_COLUMN = "timestamp";