Package org.hibernate.proxy
Class AbstractSerializableProxy
- java.lang.Object
-
- org.hibernate.proxy.AbstractSerializableProxy
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SerializableMapProxy
,SerializableProxy
public abstract class AbstractSerializableProxy extends Object implements Serializable
Convenience base class for the serialized form ofAbstractLazyInitializer
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
sessionFactoryName
protected String
sessionFactoryUuid
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
afterDeserialization(AbstractLazyInitializer li)
Initialize anAbstractLazyInitializer
after deserialization.protected String
getEntityName()
protected Object
getId()
-
-
-
Method Detail
-
getEntityName
protected String getEntityName()
-
getId
protected Object getId()
-
afterDeserialization
protected void afterDeserialization(AbstractLazyInitializer li)
Initialize anAbstractLazyInitializer
after deserialization. This method should only be called during deserialization, before associating the AbstractLazyInitializer with a session.- Parameters:
li
- theAbstractLazyInitializer
to initialize.
-
-