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:RowMapperFactory
Creates a new column based row mapper- Specified by:
newColumnRowMapper
in interfaceRowMapperFactory
-
newBeanRowMapper
public org.springframework.jdbc.core.RowMapper<?> newBeanRowMapper(Class<?> mappedClass)
Description copied from interface:RowMapperFactory
Creates a new bean based row mapper- Specified by:
newBeanRowMapper
in interfaceRowMapperFactory
- Parameters:
mappedClass
- the mapped class
-
-