HHH-5879 expose getPropertyColumnUpdateable getPropertyColumnInsertable

This commit is contained in:
Emmanuel Bernard 2011-01-28 12:24:15 -06:00 committed by JPAV
parent 2ccc73454a
commit 11c2537526
1 changed files with 8 additions and 0 deletions

View File

@ -454,6 +454,14 @@ public abstract class AbstractEntityPersister
return rowIdName != null;
}
protected boolean[][] getPropertyColumnUpdateable() {
return propertyColumnUpdateable;
}
protected boolean[][] getPropertyColumnInsertable() {
return propertyColumnInsertable;
}
public AbstractEntityPersister(
final PersistentClass persistentClass,
final EntityRegionAccessStrategy cacheAccessStrategy,