Search in sources :

Example 1 with RegisterJoinRowMapper

use of org.jdbi.v3.sqlobject.config.RegisterJoinRowMapper in project jdbi by jdbi.

the class RegisterJoinRowMapperImpl method configureForType.

@Override
public void configureForType(ConfigRegistry registry, Annotation annotation, Class<?> sqlObjectType) {
    RegisterJoinRowMapper registerJoinRowMapper = (RegisterJoinRowMapper) annotation;
    registry.get(RowMappers.class).register(JoinRowMapper.forTypes(registerJoinRowMapper.value()));
}
Also used : RegisterJoinRowMapper(org.jdbi.v3.sqlobject.config.RegisterJoinRowMapper) RowMappers(org.jdbi.v3.core.mapper.RowMappers)

Aggregations

RowMappers (org.jdbi.v3.core.mapper.RowMappers)1 RegisterJoinRowMapper (org.jdbi.v3.sqlobject.config.RegisterJoinRowMapper)1