List of usage examples for org.springframework.jdbc.core RowMapper interface-usage
From source file cc.cicadabear.security.infrastructure.jdbc.OauthClientDetailsRowMapper.java
/** * 2015/11/16 * * @author Shengzhao Li */ public class OauthClientDetailsRowMapper implements RowMapper<OauthClientDetails> {
From source file dao.SchemaDatasetRowMapper.java
public class SchemaDatasetRowMapper implements RowMapper<SchemaDataset> { public static String DATASET_ID_COLUMN = "dataset_id"; public static String URN_COLUMN = "urn"; public static String MODIFIED_DATE_COLUMN = "modified_date"; public static String DATASET_LINK_PREFIX = "/#/datasets/";
From source file com.monkeyk.sos.infrastructure.jdbc.OauthClientDetailsRowMapper.java
/** * 2015/11/16 * * @author Shengzhao Li */ public class OauthClientDetailsRowMapper implements RowMapper<OauthClientDetails> {
From source file io.spring.batch.domain.CustomerRowMapper.java
/** * @author Michael Minella */ public class CustomerRowMapper implements RowMapper<Customer> { @Override public Customer mapRow(ResultSet resultSet, int i) throws SQLException {
From source file org.codehaus.grepo.procedure.cursor.TestRowMapper.java
/** * @author dguggi */ public class TestRowMapper implements RowMapper<Object> { /** * {@inheritDoc}
From source file com.ccoe.build.service.config.ConfigurationMapper.java
public class ConfigurationMapper implements RowMapper<Configuration> { @Override public Configuration mapRow(ResultSet rs, int arg1) throws SQLException { Configuration conf = new Configuration();
From source file net.kamhon.ieagle.jdbc.SingleRowMapper.java
public abstract class SingleRowMapper<T> implements RowMapper<T> { public abstract T onMapRow(ResultSet resultSet, int rowNum) throws SQLException; public T mapRow(ResultSet resultSet, int rowNum) throws SQLException { T object = onMapRow(resultSet, rowNum);
From source file dao.DatasetColumnCommentRowMapper.java
public class DatasetColumnCommentRowMapper implements RowMapper<DatasetColumnComment> { public static String ID_COLUMN = "id"; public static String AUTHOR_COLUMN = "author"; public static String TEXT_COLUMN = "text"; public static String CREATED_TIME_COLUMN = "created"; public static String MODIFIED_TIME_COLUMN = "modified";
From source file org.xeneo.db.recommendation.DBEntryRowMapper.java
/** * * @author SCHIPFLINGER Martin */ public class DBEntryRowMapper implements RowMapper { @Override
From source file dao.DatasetCommentRowMapper.java
public class DatasetCommentRowMapper implements RowMapper<DatasetComment> { public static String ID_COLUMN = "id"; public static String DATASET_ID_COLUMN = "dataset_id"; public static String TEXT_COLUMN = "text"; public static String CREATED_TIME_COLUMN = "created"; public static String MODIFIED_TIME_COLUMN = "modified";