HHH-3309 : AbstractLazyInitializer + serialization
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14901 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
7eb91afb14
commit
a7c7ba3fc7
|
@ -24,6 +24,12 @@ public abstract class AbstractLazyInitializer implements LazyInitializer {
|
|||
private Serializable id;
|
||||
private transient SessionImplementor session;
|
||||
private boolean unwrap;
|
||||
|
||||
/**
|
||||
* For serialization from the non-pojo initializers (HHH-3309)
|
||||
*/
|
||||
protected AbstractLazyInitializer() {
|
||||
}
|
||||
|
||||
protected AbstractLazyInitializer(String entityName, Serializable id, SessionImplementor session) {
|
||||
this.id = id;
|
||||
|
|
Loading…
Reference in New Issue