HHH-5879 Make property protected for use by the OGM persister

This commit is contained in:
Emmanuel Bernard 2011-01-28 12:25:27 -06:00 committed by JPAV
parent 11c2537526
commit f93581115e
1 changed files with 4 additions and 0 deletions

View File

@ -462,6 +462,10 @@ public abstract class AbstractEntityPersister
return propertyColumnInsertable;
}
protected boolean[] getPropertySelectable() {
return propertySelectable;
}
public AbstractEntityPersister(
final PersistentClass persistentClass,
final EntityRegionAccessStrategy cacheAccessStrategy,