Package org.hibernate.boot.model
Interface FunctionContributions
- All Known Implementing Classes:
MockSessionFactory
,ProcessorSessionFactory
public interface FunctionContributions
Allows custom function descriptors to be contributed to the eventual
SqmFunctionRegistry
, either by a Dialect
or by a FunctionContributor
.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault Dialect
The SQL Dialect.The registry into which the contributions should be made.Access to services.Access to type information.
-
Method Details
-
getFunctionRegistry
SqmFunctionRegistry getFunctionRegistry()The registry into which the contributions should be made. -
getTypeConfiguration
TypeConfiguration getTypeConfiguration()Access to type information. -
getServiceRegistry
ServiceRegistry getServiceRegistry()Access to services. -
getDialect
The SQL Dialect.
-