Package org.hibernate.event.spi
Class LoadEvent
- java.lang.Object
-
- org.hibernate.event.spi.AbstractEvent
-
- org.hibernate.event.spi.LoadEvent
-
- All Implemented Interfaces:
Serializable
public class LoadEvent extends AbstractEvent
Defines an event class for the loading of an entity.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static LockModeDEFAULT_LOCK_MODEstatic LockOptionsDEFAULT_LOCK_OPTIONS
-
Constructor Summary
Constructors Constructor Description LoadEvent(Serializable entityId, Object instanceToLoad, EventSource source)LoadEvent(Serializable entityId, String entityClassName, boolean isAssociationFetch, EventSource source)LoadEvent(Serializable entityId, String entityClassName, LockMode lockMode, EventSource source)LoadEvent(Serializable entityId, String entityClassName, LockOptions lockOptions, EventSource source)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEntityClassName()SerializablegetEntityId()ObjectgetInstanceToLoad()LockModegetLockMode()LockOptionsgetLockOptions()booleangetLockScope()intgetLockTimeout()PostLoadEventgetPostLoadEvent()ObjectgetResult()booleanisAssociationFetch()voidsetEntityClassName(String entityClassName)voidsetEntityId(Serializable entityId)voidsetInstanceToLoad(Object instanceToLoad)voidsetLockMode(LockMode lockMode)voidsetLockScope(boolean cascade)voidsetLockTimeout(int timeout)voidsetPostLoadEvent(PostLoadEvent postLoadEvent)voidsetResult(Object result)-
Methods inherited from class org.hibernate.event.spi.AbstractEvent
getSession
-
-
-
-
Field Detail
-
DEFAULT_LOCK_MODE
public static final LockMode DEFAULT_LOCK_MODE
-
DEFAULT_LOCK_OPTIONS
public static final LockOptions DEFAULT_LOCK_OPTIONS
-
-
Constructor Detail
-
LoadEvent
public LoadEvent(Serializable entityId, Object instanceToLoad, EventSource source)
-
LoadEvent
public LoadEvent(Serializable entityId, String entityClassName, LockMode lockMode, EventSource source)
-
LoadEvent
public LoadEvent(Serializable entityId, String entityClassName, LockOptions lockOptions, EventSource source)
-
LoadEvent
public LoadEvent(Serializable entityId, String entityClassName, boolean isAssociationFetch, EventSource source)
-
-
Method Detail
-
isAssociationFetch
public boolean isAssociationFetch()
-
getEntityId
public Serializable getEntityId()
-
setEntityId
public void setEntityId(Serializable entityId)
-
getEntityClassName
public String getEntityClassName()
-
setEntityClassName
public void setEntityClassName(String entityClassName)
-
getInstanceToLoad
public Object getInstanceToLoad()
-
setInstanceToLoad
public void setInstanceToLoad(Object instanceToLoad)
-
getLockOptions
public LockOptions getLockOptions()
-
getLockMode
public LockMode getLockMode()
-
setLockMode
public void setLockMode(LockMode lockMode)
-
setLockTimeout
public void setLockTimeout(int timeout)
-
getLockTimeout
public int getLockTimeout()
-
setLockScope
public void setLockScope(boolean cascade)
-
getLockScope
public boolean getLockScope()
-
getResult
public Object getResult()
-
setResult
public void setResult(Object result)
-
getPostLoadEvent
public PostLoadEvent getPostLoadEvent()
-
setPostLoadEvent
public void setPostLoadEvent(PostLoadEvent postLoadEvent)
-
-