public interface TemplateDecorator
Decorator used for integrations with applications and frameworks.
- Since:
- 1.6
-
Method Summary
Modifier and TypeMethodDescriptionwithColumnNameResolver(ColumnNameResolver columnNameResolver) Returns a new prepared statement template with the specified column name resolver.withForeignKeyResolver(ForeignKeyResolver foreignKeyResolver) Returns a new prepared statement template with the specified foreign key resolver.withTableNameResolver(TableNameResolver tableNameResolver) Returns a new prepared statement template with the specified table name resolver.
-
Method Details
-
withTableNameResolver
Returns a new prepared statement template with the specified table name resolver.- Parameters:
tableNameResolver- the table name resolver.- Returns:
- a new prepared statement template.
-
withColumnNameResolver
Returns a new prepared statement template with the specified column name resolver.- Parameters:
columnNameResolver- the column name resolver.- Returns:
- a new prepared statement template.
-
withForeignKeyResolver
Returns a new prepared statement template with the specified foreign key resolver.- Parameters:
foreignKeyResolver- the foreign key resolver.- Returns:
- a new prepared statement template.
-