Package com.im.commons.db.columnhandling
Interface ColumnHandlerFactory
-
public interface ColumnHandlerFactory
Interface for factories providingColumnHandler
. Instances should be registered through ie:ServiceProvider(service = ColumnHandlerFactory.class, path = "META-INF/namedservices/rdbms/db_type")
annotation.db_type
should be replaced with actual db type string or default for the default factory.- Author:
- Max Sauer
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ColumnHandlerFactory.Context<T>
Context needed for creating a ColumnHandler.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> ColumnHandler<T>
getColumnHandler(ColumnHandlerFactory.Context<T> context)
-
-
-
Method Detail
-
getColumnHandler
<T> ColumnHandler<T> getColumnHandler(ColumnHandlerFactory.Context<T> context)
-
-