Class RegisterColumnMapperFactoryImpl
- java.lang.Object
-
- org.jdbi.v3.sqlobject.config.internal.RegisterColumnMapperFactoryImpl
-
- All Implemented Interfaces:
Configurer
public class RegisterColumnMapperFactoryImpl extends Object implements Configurer
-
-
Constructor Summary
Constructors Constructor Description RegisterColumnMapperFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigureForMethod(ConfigRegistry registry, Annotation annotation, Class<?> sqlObjectType, Method method)Configures the registry for the given annotation on a sql object method.voidconfigureForType(ConfigRegistry registry, Annotation annotation, Class<?> sqlObjectType)Configures the registry for the given annotation on a sql object type.
-
-
-
Method Detail
-
configureForMethod
public void configureForMethod(ConfigRegistry registry, Annotation annotation, Class<?> sqlObjectType, Method method)
Description copied from interface:ConfigurerConfigures the registry for the given annotation on a sql object method.- Specified by:
configureForMethodin interfaceConfigurer- Parameters:
registry- the registry to configureannotation- the annotationsqlObjectType- the sql object typemethod- the method which was annotated
-
configureForType
public void configureForType(ConfigRegistry registry, Annotation annotation, Class<?> sqlObjectType)
Description copied from interface:ConfigurerConfigures the registry for the given annotation on a sql object type.- Specified by:
configureForTypein interfaceConfigurer- Parameters:
registry- the registry to configureannotation- the annotationsqlObjectType- the sql object type which was annotated
-
-