Class DefaultPhysicalNamingStrategy
java.lang.Object
io.micronaut.data.hibernate.naming.DefaultPhysicalNamingStrategy
- All Implemented Interfaces:
- org.hibernate.boot.model.naming.PhysicalNamingStrategy
@Singleton
public final class DefaultPhysicalNamingStrategy
extends Object
implements org.hibernate.boot.model.naming.PhysicalNamingStrategy
The default 
PhysicalNamingStrategy to use. Can be replaced with another bean that declares:
 @Replaces(DefaultPhysicalNamingStrategy.class) and implements PhysicalNamingStrategy- Since:
- 1.0.0
- Author:
- graemerocher
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionorg.hibernate.boot.model.naming.IdentifiertoPhysicalCatalogName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) org.hibernate.boot.model.naming.IdentifiertoPhysicalColumnName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) org.hibernate.boot.model.naming.IdentifiertoPhysicalSchemaName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) org.hibernate.boot.model.naming.IdentifiertoPhysicalSequenceName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) org.hibernate.boot.model.naming.IdentifiertoPhysicalTableName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.hibernate.boot.model.naming.PhysicalNamingStrategytoPhysicalTypeName
- 
Constructor Details- 
DefaultPhysicalNamingStrategypublic DefaultPhysicalNamingStrategy()
 
- 
- 
Method Details- 
toPhysicalCatalogNamepublic org.hibernate.boot.model.naming.Identifier toPhysicalCatalogName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) - Specified by:
- toPhysicalCatalogNamein interface- org.hibernate.boot.model.naming.PhysicalNamingStrategy
 
- 
toPhysicalSchemaNamepublic org.hibernate.boot.model.naming.Identifier toPhysicalSchemaName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) - Specified by:
- toPhysicalSchemaNamein interface- org.hibernate.boot.model.naming.PhysicalNamingStrategy
 
- 
toPhysicalTableNamepublic org.hibernate.boot.model.naming.Identifier toPhysicalTableName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) - Specified by:
- toPhysicalTableNamein interface- org.hibernate.boot.model.naming.PhysicalNamingStrategy
 
- 
toPhysicalSequenceNamepublic org.hibernate.boot.model.naming.Identifier toPhysicalSequenceName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) - Specified by:
- toPhysicalSequenceNamein interface- org.hibernate.boot.model.naming.PhysicalNamingStrategy
 
- 
toPhysicalColumnNamepublic org.hibernate.boot.model.naming.Identifier toPhysicalColumnName(org.hibernate.boot.model.naming.Identifier name, org.hibernate.engine.jdbc.env.spi.JdbcEnvironment jdbcEnvironment) - Specified by:
- toPhysicalColumnNamein interface- org.hibernate.boot.model.naming.PhysicalNamingStrategy
 
 
-