Example usage for org.springframework.jdbc.core RowMapper interface-usage

List of usage examples for org.springframework.jdbc.core RowMapper interface-usage

Introduction

In this page you can find the example usage for org.springframework.jdbc.core RowMapper interface-usage.

Usage

From source file org.zenoss.zep.dao.impl.EventSummaryRowMapper.java

public class EventSummaryRowMapper implements RowMapper<EventSummary> {
    private final EventDaoHelper helper;
    private final TypeConverter<Long> timestampConverter;
    private final TypeConverter<String> uuidConverter;

    public EventSummaryRowMapper(EventDaoHelper eventDaoHelper, DatabaseCompatibility databaseCompatibility) {

From source file com.springsource.greenhouse.account.AccountMapper.java

/**
 * RowMapper that maps a row in a ResultSet to an Account object instance.
 * Designed to be re-used anywhere Account SQL mapping needs to be performed.
 * Encapsulates the trickiest aspects of AccountMapping: mapping the picture and profile URL fields.
 * Also capable of mapping AccountReference objects, for generating links to public user profile without exposing private user data.
 * @author Keith Donald

From source file io.lightlink.spring.StreamingMapper.java

public class StreamingMapper implements RowMapper<Object> {

    private RowMapper nestedRowMapper;
    private String resultPropertyName;
    private int colCount;
    private String[] colNames;

From source file org.jasig.schedassist.impl.statistics.AppointmentEventRowMapper.java

/**
 * {@link RowMapper} for {@link AppointmentEvent}s.
 * 
 * Depends on an {@link OwnerDao}.
 * The {@link #mapRow(ResultSet, int)} implementation will try to attach the matching
 * {@link IScheduleOwner} (if still exists).

From source file eu.trentorise.smartcampus.permissionprovider.model.ClientDetailsRowMapper.java

/**
 * DB mapper for the client app information
 * @author raman
 *
 */
public class ClientDetailsRowMapper implements RowMapper<ClientDetails> {

From source file org.ojbc.adapters.analyticaldatastore.dao.IncidentRowMapper.java

public class IncidentRowMapper implements RowMapper<Incident> {
    @Override
    public Incident mapRow(ResultSet rs, int rowNum) throws SQLException {
        Incident incident = new Incident();

        incident.setIncidentCaseNumber(rs.getString("IncidentCaseNumber"));

From source file it.smartcommunitylab.aac.model.ClientDetailsRowMapper.java

import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.oauth2.provider.ClientDetails;
import org.springframework.security.oauth2.provider.client.BaseClientDetails;
import org.springframework.util.StringUtils;

import it.smartcommunitylab.aac.repository.UserRepository;

From source file org.apereo.services.persondir.support.jdbc.ColumnMapParameterizedRowMapper.java

/**
 * JDK5 clone of {@link org.springframework.jdbc.core.ColumnMapRowMapper}
 *
 * @author Eric Dalquist
    
 */

From source file com.wantscart.jade.core.mapper.MapEntryRowMapper.java

/**
 * SQL???????key?key-value
 * 
 * @author  [qieqie.wang@gmail.com]
 * @author  [in355hz@gmail.com]
 * 

From source file com.gzj.tulip.jade.rowmapper.MapEntryRowMapper.java

/**
 * SQL???????key?key-value
 * 
 * @author  [qieqie.wang@gmail.com]
 * @author  [in355hz@gmail.com]
 *