Package org.jdbi.v3.sqlobject.config
Interface Configurer
public interface Configurer
Configures 
ConfigRegistry instances to satisfy the contract of a
 ConfiguringAnnotation-annotated annotation.- 
Method SummaryModifier and TypeMethodDescriptiondefault voidconfigureForMethod(ConfigRegistry registry, Annotation annotation, Class<?> sqlObjectType, Method method) Configures the registry for the given annotation on a sql object method.default voidconfigureForType(ConfigRegistry registry, Annotation annotation, Class<?> sqlObjectType) Configures the registry for the given annotation on a sql object type.
- 
Method Details- 
configureForTypedefault void configureForType(ConfigRegistry registry, Annotation annotation, Class<?> sqlObjectType) Configures the registry for the given annotation on a sql object type.- Parameters:
- registry- the registry to configure
- annotation- the annotation
- sqlObjectType- the sql object type which was annotated
 
- 
configureForMethoddefault void configureForMethod(ConfigRegistry registry, Annotation annotation, Class<?> sqlObjectType, Method method) Configures the registry for the given annotation on a sql object method.- Parameters:
- registry- the registry to configure
- annotation- the annotation
- sqlObjectType- the sql object type
- method- the method which was annotated
 
 
-