method access changes for reactive overrides in AbstractEntityPersister
This commit is contained in:
parent
08e1aae49f
commit
2177b32983
|
@ -4469,7 +4469,7 @@ public abstract class AbstractEntityPersister
|
|||
return entityMetamodel.getNaturalIdentifierProperties();
|
||||
}
|
||||
|
||||
private void verifyHasNaturalId() {
|
||||
protected void verifyHasNaturalId() {
|
||||
if ( ! hasNaturalIdentifier() ) {
|
||||
throw new HibernateException( "Entity does not define a natural id : " + getEntityName() );
|
||||
}
|
||||
|
@ -4890,7 +4890,7 @@ public abstract class AbstractEntityPersister
|
|||
}
|
||||
}
|
||||
|
||||
private NaturalIdMapping generateNaturalIdMapping(MappingModelCreationProcess creationProcess, PersistentClass bootEntityDescriptor) {
|
||||
protected NaturalIdMapping generateNaturalIdMapping(MappingModelCreationProcess creationProcess, PersistentClass bootEntityDescriptor) {
|
||||
//noinspection AssertWithSideEffects
|
||||
assert bootEntityDescriptor.hasNaturalId();
|
||||
|
||||
|
|
Loading…
Reference in New Issue