parent
285c5eb43e
commit
d989d6e4f2
|
@ -1820,6 +1820,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public String[] toColumns(String alias, String propertyName) throws QueryException {
|
||||
return propertyMapping.toColumns( alias, propertyName );
|
||||
}
|
||||
|
@ -1834,6 +1835,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public String[] toColumns(String propertyName) throws QueryException {
|
||||
return propertyMapping.getColumnNames( propertyName );
|
||||
}
|
||||
|
@ -1848,6 +1850,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public Type toType(String propertyName) throws QueryException {
|
||||
return propertyMapping.toType( propertyName );
|
||||
}
|
||||
|
@ -1862,6 +1865,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public String[] getPropertyColumnNames(String propertyName) {
|
||||
return propertyMapping.getColumnNames( propertyName );
|
||||
}
|
||||
|
@ -4557,6 +4561,7 @@ public abstract class AbstractEntityPersister
|
|||
* {@literal this} is the concrete EntityPersister (since the
|
||||
* concrete EntityPersister cannot have duplicated property names).
|
||||
*/
|
||||
@Override
|
||||
public Type getPropertyType(String propertyName) throws MappingException {
|
||||
return propertyMapping.toType( propertyName );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue