Package org.hibernate.cfg
Class DefaultNamingStrategy
java.lang.Object
org.hibernate.cfg.DefaultNamingStrategy
- All Implemented Interfaces:
Serializable,NamingStrategy
@Deprecated
public class DefaultNamingStrategy
extends Object
implements NamingStrategy, Serializable
Deprecated.
The default
NamingStrategy- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclassToTableName(String className) Deprecated.Return the unqualified class namecollectionTableName(String ownerEntity, String ownerEntityTable, String associatedEntity, String associatedEntityTable, String propertyName) Deprecated.Return the unqualified property name, not the best strategy but a backward compatible onecolumnName(String columnName) Deprecated.Return the argumentforeignKeyColumnName(String propertyName, String propertyEntityName, String propertyTableName, String referencedColumnName) Deprecated.Return the property name or propertyTableNamejoinKeyColumnName(String joinedColumn, String joinedTable) Deprecated.Return the argumentlogicalCollectionColumnName(String columnName, String propertyName, String referencedColumn) Deprecated.Return the column name if explicit or the concatenation of the property name and the referenced columnlogicalCollectionTableName(String tableName, String ownerEntityTable, String associatedEntityTable, String propertyName) Deprecated.Returns either the table name if explicit or if there is an associated table, the concatenation of owner entity table and associated table otherwise the concatenation of owner entity table and the unqualified property namelogicalColumnName(String columnName, String propertyName) Deprecated.Return the column name or the unqualified property namepropertyToColumnName(String propertyName) Deprecated.Return the unqualified property nameDeprecated.Return the argument
-
Field Details
-
INSTANCE
Deprecated.The singleton instance
-
-
Constructor Details
-
DefaultNamingStrategy
public DefaultNamingStrategy()Deprecated.
-
-
Method Details
-
classToTableName
Deprecated.Return the unqualified class name- Specified by:
classToTableNamein interfaceNamingStrategy- Parameters:
className- the fully-qualified class name- Returns:
- a table name
-
propertyToColumnName
Deprecated.Return the unqualified property name- Specified by:
propertyToColumnNamein interfaceNamingStrategy- Parameters:
propertyName- a property path- Returns:
- a column name
-
tableName
Deprecated.Return the argument- Specified by:
tableNamein interfaceNamingStrategy- Parameters:
tableName- a table name- Returns:
- a table name
-
columnName
Deprecated.Return the argument- Specified by:
columnNamein interfaceNamingStrategy- Parameters:
columnName- a column name- Returns:
- a column name
-
collectionTableName
public String collectionTableName(String ownerEntity, String ownerEntityTable, String associatedEntity, String associatedEntityTable, String propertyName) Deprecated.Return the unqualified property name, not the best strategy but a backward compatible one- Specified by:
collectionTableNamein interfaceNamingStrategyownerEntityTable- owner side table nameassociatedEntityTable- reverse side table name if anypropertyName- collection role
-
joinKeyColumnName
Deprecated.Return the argument- Specified by:
joinKeyColumnNamein interfaceNamingStrategy- Parameters:
joinedColumn- joined column name (logical one) used to join withjoinedTable- joined table name (ie the referenced table) used to join with
-
foreignKeyColumnName
public String foreignKeyColumnName(String propertyName, String propertyEntityName, String propertyTableName, String referencedColumnName) Deprecated.Return the property name or propertyTableName- Specified by:
foreignKeyColumnNamein interfaceNamingStrategy- Parameters:
propertyName- the property name involvedpropertyTableName- the property table name involved (logical one)referencedColumnName- the referenced column name involved (logical one)
-
logicalColumnName
Deprecated.Return the column name or the unqualified property name- Specified by:
logicalColumnNamein interfaceNamingStrategy- Parameters:
columnName- given column name if anypropertyName- property name of this column
-
logicalCollectionTableName
public String logicalCollectionTableName(String tableName, String ownerEntityTable, String associatedEntityTable, String propertyName) Deprecated.Returns either the table name if explicit or if there is an associated table, the concatenation of owner entity table and associated table otherwise the concatenation of owner entity table and the unqualified property name- Specified by:
logicalCollectionTableNamein interfaceNamingStrategy- Parameters:
tableName- the metadata explicit nameownerEntityTable- owner table entity table name (logical one)associatedEntityTable- reverse side table name if any (logical one)propertyName- collection role
-
logicalCollectionColumnName
public String logicalCollectionColumnName(String columnName, String propertyName, String referencedColumn) Deprecated.Return the column name if explicit or the concatenation of the property name and the referenced column- Specified by:
logicalCollectionColumnNamein interfaceNamingStrategy- Parameters:
columnName- given column name in the metadata if anypropertyName- property namereferencedColumn- referenced column name (logical one) in the join
-
NamingStrategyitself has been deprecated