Package org.apache.camel.component.sql
Class DefaultRowMapperFactory
- java.lang.Object
-
- org.apache.camel.component.sql.DefaultRowMapperFactory
-
- All Implemented Interfaces:
RowMapperFactory
public class DefaultRowMapperFactory extends Object implements RowMapperFactory
DefaultRowMapperFactory.
-
-
Constructor Summary
Constructors Constructor Description DefaultRowMapperFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.jdbc.core.RowMapper<?>newBeanRowMapper(Class<?> mappedClass)Creates a new bean based row mapperorg.springframework.jdbc.core.RowMapper<?>newColumnRowMapper()Creates a new column based row mapper
-
-
-
Method Detail
-
newColumnRowMapper
public org.springframework.jdbc.core.RowMapper<?> newColumnRowMapper()
Description copied from interface:RowMapperFactoryCreates a new column based row mapper- Specified by:
newColumnRowMapperin interfaceRowMapperFactory
-
newBeanRowMapper
public org.springframework.jdbc.core.RowMapper<?> newBeanRowMapper(Class<?> mappedClass)
Description copied from interface:RowMapperFactoryCreates a new bean based row mapper- Specified by:
newBeanRowMapperin interfaceRowMapperFactory- Parameters:
mappedClass- the mapped class
-
-