public String collectionTableName( String ownerEntity, String ownerEntityTable, String associatedEntity, String associatedEntityTable, String propertyName ) { return tableName( ownerEntityTable + '_' + propertyToColumnName(propertyName) ); }
@Override public String propertyToColumnName(String propertyName) { return super.propertyToColumnName(propertyName); }
@Override public String propertyToColumnName(String propertyName) { return COLUMN_PREFIX + super.propertyToColumnName(propertyName); }
/** * 지정된 속성명의 단어들을 underscore(_) 로 구분된 문자열로 변환합니다. (UserId => USER_ID) * * @param propertyName 속성명 * @return Oracle 명명 규칙에 따른 컬럼명 */ @Override public String propertyToColumnName(String propertyName) { return super.propertyToColumnName(propertyName).toUpperCase(); }
/** * Return the full property path prefixed by the unqualified class * name, with underscore seperators, mixed case converted to underscores */ public String propertyToTableName(String className, String propertyName) { return classToTableName(className) + '_' + propertyToColumnName(propertyName); }
public String collectionTableName( String ownerEntity, String ownerEntityTable, String associatedEntity, String associatedEntityTable, String propertyName ) { return tableName( ownerEntityTable + '_' + propertyToColumnName(propertyName) ); }
public String collectionTableName( String ownerEntity, String ownerEntityTable, String associatedEntity, String associatedEntityTable, String propertyName ) { return tableName( ownerEntityTable + '_' + propertyToColumnName(propertyName) ); }
public String collectionTableName( String ownerEntity, String ownerEntityTable, String associatedEntity, String associatedEntityTable, String propertyName ) { return tableName( ownerEntityTable + '_' + propertyToColumnName(propertyName) ); }
public String collectionTableName( String ownerEntity, String ownerEntityTable, String associatedEntity, String associatedEntityTable, String propertyName ) { return tableName( ownerEntityTable + '_' + propertyToColumnName(propertyName) ); }
@Override public String propertyToColumnName(String propertyName) { return getShortenedIdentifier(super.propertyToColumnName(propertyName)); }