Package org.hibernate.boot.model.naming
Class PhysicalNamingStrategyStandardImpl
- java.lang.Object
-
- org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
-
- All Implemented Interfaces:
Serializable
,PhysicalNamingStrategy
public class PhysicalNamingStrategyStandardImpl extends Object implements PhysicalNamingStrategy, Serializable
Standard implementation of the PhysicalNamingStrategy contract.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static PhysicalNamingStrategyStandardImpl
INSTANCE
Singleton access
-
Constructor Summary
Constructors Constructor Description PhysicalNamingStrategyStandardImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Identifier
toPhysicalCatalogName(Identifier logicalName, JdbcEnvironment context)
Determine the appropriate physical catalog name to use for the given logical nameIdentifier
toPhysicalColumnName(Identifier logicalName, JdbcEnvironment context)
Determine the appropriate physical column name to use for the given logical nameIdentifier
toPhysicalSchemaName(Identifier logicalName, JdbcEnvironment context)
Determine the appropriate physical schema name to use for the given logical nameIdentifier
toPhysicalSequenceName(Identifier logicalName, JdbcEnvironment context)
Determine the appropriate physical sequence name to use for the given logical nameIdentifier
toPhysicalTableName(Identifier logicalName, JdbcEnvironment context)
Determine the appropriate physical table name to use for the given logical name
-
-
-
Field Detail
-
INSTANCE
public static final PhysicalNamingStrategyStandardImpl INSTANCE
Singleton access
-
-
Method Detail
-
toPhysicalCatalogName
public Identifier toPhysicalCatalogName(Identifier logicalName, JdbcEnvironment context)
Description copied from interface:PhysicalNamingStrategy
Determine the appropriate physical catalog name to use for the given logical name- Specified by:
toPhysicalCatalogName
in interfacePhysicalNamingStrategy
-
toPhysicalSchemaName
public Identifier toPhysicalSchemaName(Identifier logicalName, JdbcEnvironment context)
Description copied from interface:PhysicalNamingStrategy
Determine the appropriate physical schema name to use for the given logical name- Specified by:
toPhysicalSchemaName
in interfacePhysicalNamingStrategy
-
toPhysicalTableName
public Identifier toPhysicalTableName(Identifier logicalName, JdbcEnvironment context)
Description copied from interface:PhysicalNamingStrategy
Determine the appropriate physical table name to use for the given logical name- Specified by:
toPhysicalTableName
in interfacePhysicalNamingStrategy
-
toPhysicalSequenceName
public Identifier toPhysicalSequenceName(Identifier logicalName, JdbcEnvironment context)
Description copied from interface:PhysicalNamingStrategy
Determine the appropriate physical sequence name to use for the given logical name- Specified by:
toPhysicalSequenceName
in interfacePhysicalNamingStrategy
-
toPhysicalColumnName
public Identifier toPhysicalColumnName(Identifier logicalName, JdbcEnvironment context)
Description copied from interface:PhysicalNamingStrategy
Determine the appropriate physical column name to use for the given logical name- Specified by:
toPhysicalColumnName
in interfacePhysicalNamingStrategy
-
-