Package org.hibernate.cfg
Class ImprovedNamingStrategy
- java.lang.Object
-
- org.hibernate.cfg.ImprovedNamingStrategy
-
- All Implemented Interfaces:
Serializable
,NamingStrategy
@Deprecated public class ImprovedNamingStrategy extends Object implements NamingStrategy, Serializable
Deprecated.NamingStrategy
itself has been deprecatedAn improved naming strategy that prefers embedded underscores to mixed case names- See Also:
the default strategy
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static NamingStrategy
INSTANCE
Deprecated.A convenient singleton instance
-
Constructor Summary
Constructors Constructor Description ImprovedNamingStrategy()
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected static String
addUnderscores(String name)
Deprecated.String
classToTableName(String className)
Deprecated.Return the unqualified class name, mixed case converted to underscoresString
collectionTableName(String ownerEntity, String ownerEntityTable, String associatedEntity, String associatedEntityTable, String propertyName)
Deprecated.Return a collection table name ie an association having a join tableString
columnName(String columnName)
Deprecated.Convert mixed case to underscoresString
foreignKeyColumnName(String propertyName, String propertyEntityName, String propertyTableName, String referencedColumnName)
Deprecated.Return the property name or propertyTableNameString
joinKeyColumnName(String joinedColumn, String joinedTable)
Deprecated.Return the argumentString
logicalCollectionColumnName(String columnName, String propertyName, String referencedColumn)
Deprecated.Return the column name if explicit or the concatenation of the property name and the referenced columnString
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 nameString
logicalColumnName(String columnName, String propertyName)
Deprecated.Return the column name or the unqualified property nameString
propertyToColumnName(String propertyName)
Deprecated.Return the full property path with underscore separators, mixed case converted to underscoresString
tableName(String tableName)
Deprecated.Convert mixed case to underscores
-
-
-
Field Detail
-
INSTANCE
public static final NamingStrategy INSTANCE
Deprecated.A convenient singleton instance
-
-
Method Detail
-
classToTableName
public String classToTableName(String className)
Deprecated.Return the unqualified class name, mixed case converted to underscores- Specified by:
classToTableName
in interfaceNamingStrategy
- Parameters:
className
- the fully-qualified class name- Returns:
- a table name
-
propertyToColumnName
public String propertyToColumnName(String propertyName)
Deprecated.Return the full property path with underscore separators, mixed case converted to underscores- Specified by:
propertyToColumnName
in interfaceNamingStrategy
- Parameters:
propertyName
- a property path- Returns:
- a column name
-
tableName
public String tableName(String tableName)
Deprecated.Convert mixed case to underscores- Specified by:
tableName
in interfaceNamingStrategy
- Parameters:
tableName
- a table name- Returns:
- a table name
-
columnName
public String columnName(String columnName)
Deprecated.Convert mixed case to underscores- Specified by:
columnName
in 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.Description copied from interface:NamingStrategy
Return a collection table name ie an association having a join table- Specified by:
collectionTableName
in interfaceNamingStrategy
ownerEntityTable
- owner side table nameassociatedEntityTable
- reverse side table name if anypropertyName
- collection role
-
joinKeyColumnName
public String joinKeyColumnName(String joinedColumn, String joinedTable)
Deprecated.Return the argument- Specified by:
joinKeyColumnName
in 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:
foreignKeyColumnName
in interfaceNamingStrategy
- Parameters:
propertyName
- the property name involvedpropertyTableName
- the property table name involved (logical one)referencedColumnName
- the referenced column name involved (logical one)
-
logicalColumnName
public String logicalColumnName(String columnName, String propertyName)
Deprecated.Return the column name or the unqualified property name- Specified by:
logicalColumnName
in 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:
logicalCollectionTableName
in 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:
logicalCollectionColumnName
in interfaceNamingStrategy
- Parameters:
columnName
- given column name in the metadata if anypropertyName
- property namereferencedColumn
- referenced column name (logical one) in the join
-
-