Package org.hibernate.cfg
Interface MultiTenancySettings
-
- All Known Subinterfaces:
AvailableSettings
- All Known Implementing Classes:
Environment
public interface MultiTenancySettings
-
-
Field Summary
Fields Modifier and Type Field Description static String
MULTI_TENANT_CONNECTION_PROVIDER
Specifies aMultiTenantConnectionProvider
to use.static String
MULTI_TENANT_IDENTIFIER_RESOLVER
Specifies aCurrentTenantIdentifierResolver
to use, either: an instance ofCurrentTenantIdentifierResolver
, aClass
representing an class that implementsCurrentTenantIdentifierResolver
, or the name of a class that implementsCurrentTenantIdentifierResolver
.static String
TENANT_IDENTIFIER_TO_USE_FOR_ANY_KEY
During bootstrap, Hibernate needs access to any Connection for access toDatabaseMetaData
.
-
-
-
Field Detail
-
MULTI_TENANT_CONNECTION_PROVIDER
static final String MULTI_TENANT_CONNECTION_PROVIDER
Specifies aMultiTenantConnectionProvider
to use. SinceMultiTenantConnectionProvider
is also a service, it may be configured directly via theStandardServiceRegistryBuilder
.- Since:
- 4.1
- See Also:
- Constant Field Values
-
MULTI_TENANT_IDENTIFIER_RESOLVER
static final String MULTI_TENANT_IDENTIFIER_RESOLVER
Specifies aCurrentTenantIdentifierResolver
to use, either:- an instance of
CurrentTenantIdentifierResolver
, - a
Class
representing an class that implementsCurrentTenantIdentifierResolver
, or - the name of a class that implements
CurrentTenantIdentifierResolver
.
- an instance of
-
TENANT_IDENTIFIER_TO_USE_FOR_ANY_KEY
static final String TENANT_IDENTIFIER_TO_USE_FOR_ANY_KEY
During bootstrap, Hibernate needs access to any Connection for access toDatabaseMetaData
. This setting configures the name of the DataSource to use for this access- See Also:
- Constant Field Values
-
-