Package org.jdbi.v3.core.extension
Interface ConfigCustomizerFactory
Factory interface to create collections of 
ConfigCustomizer instances.- Since:
 - 3.38.0
 
- 
Method Summary
Modifier and TypeMethodDescriptiondefault Collection<ConfigCustomizer> forExtensionMethod(Class<?> extensionType, Method method) Creates a collection ofConfigCustomizerinstances for an extension type method.default Collection<ConfigCustomizer> forExtensionType(Class<?> extensionType) Creates a collection ofConfigCustomizerinstances for an extension type. 
- 
Method Details
- 
forExtensionType
Creates a collection ofConfigCustomizerinstances for an extension type.- Parameters:
 extensionType- The extension type- Returns:
 - A 
CollectionofConfigCustomizerobjects. Must not be null 
 - 
forExtensionMethod
Creates a collection ofConfigCustomizerinstances for an extension type method.- Parameters:
 extensionType- The extension typemethod- The method on the extension type- Returns:
 - A 
CollectionofConfigCustomizerobjects. Must not be null 
 
 -