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 StringsessionFactoryNameprotected StringsessionFactoryUuid
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidafterDeserialization(AbstractLazyInitializer li)Initialize anAbstractLazyInitializerafter deserialization.protected StringgetEntityName()protected ObjectgetId()
-
-
-
Method Detail
-
getEntityName
protected String getEntityName()
-
getId
protected Object getId()
-
afterDeserialization
protected void afterDeserialization(AbstractLazyInitializer li)
Initialize anAbstractLazyInitializerafter deserialization. This method should only be called during deserialization, before associating the AbstractLazyInitializer with a session.- Parameters:
li- theAbstractLazyInitializerto initialize.
-
-