#1789 - Add default constructor to EntityBeanIntercept for serialisation framework use only

This commit is contained in:
rob bygrave
2019-08-12 21:09:31 +12:00
parent f5459920e9
commit 196645e7a2
@@ -116,6 +116,14 @@ public final class EntityBeanIntercept implements Serializable {
this.flags = new byte[owner._ebean_getPropertyNames().length];
}
/**
* EXPERIMENTAL - Constructor only for use by serialization frameworks.
*/
public EntityBeanIntercept() {
this.owner = null;
this.flags = null;
}
/**
* Return the 'owning' entity bean.
*/