HHH-11934 Make the delegate field accessible to child classes
This commit is contained in:
parent
6390471d55
commit
1f7aac9979
|
@ -73,6 +73,10 @@ public class SessionFactoryDelegatingImpl implements SessionFactoryImplementor,
|
||||||
this.delegate = delegate;
|
this.delegate = delegate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected SessionFactoryImplementor getDelegate() {
|
||||||
|
return delegate;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SessionFactoryOptions getSessionFactoryOptions() {
|
public SessionFactoryOptions getSessionFactoryOptions() {
|
||||||
return delegate.getSessionFactoryOptions();
|
return delegate.getSessionFactoryOptions();
|
||||||
|
|
Loading…
Reference in New Issue