|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Implementors define mapping and persistence logic for a particular strategy of entity mapping. An instance of entity persisters corresponds to a given mapped entity.
Implementors must be threadsafe (preferrably immutable) and must provide a constructor matching the signature of:PersistentClass
, SessionFactoryImplementor
Field Summary | |
static String |
ENTITY_ID
The property name of the "special" identifier property in HQL |
Method Summary | |
void |
afterInitialize(Object entity,
boolean lazyPropertiesAreUnfetched,
SessionImplementor session)
Called just after the entities properties have been initialized |
void |
afterReassociate(Object entity,
SessionImplementor session)
Called just after the entity has been reassociated with the session |
boolean |
canExtractIdOutOfEntity()
Determine whether detahced instances of this entity carry their own identifier value. |
Object |
createProxy(Serializable id,
SessionImplementor session)
Create a new proxy instance |
void |
delete(Serializable id,
Object version,
Object object,
SessionImplementor session)
Delete a persistent instance |
int[] |
findDirty(Object[] currentState,
Object[] previousState,
Object owner,
SessionImplementor session)
Compare the two snapshots to determine if they represent dirty state. |
int[] |
findModified(Object[] old,
Object[] current,
Object object,
SessionImplementor session)
Compare the two snapshots to determine if they represent modified state. |
Object |
forceVersionIncrement(Serializable id,
Object currentVersion,
SessionImplementor session)
|
CacheConcurrencyStrategy |
getCache()
Get the cache (optional operation) |
CacheEntryStructure |
getCacheEntryStructure()
Get the cache structure |
ClassMetadata |
getClassMetadata()
Get the user-visible metadata for the class (optional operation) |
Class |
getConcreteProxyClass(EntityMode entityMode)
Get the proxy interface that instances of this concrete class will be cast to (optional operation). |
Object |
getCurrentVersion(Serializable id,
SessionImplementor session)
Get the current version of the object, or return null if there is no row for the given identifier. |
Object[] |
getDatabaseSnapshot(Serializable id,
SessionImplementor session)
Get the current database state of the object, in a "hydrated" form, without resolving identifiers |
EntityMetamodel |
getEntityMetamodel()
Retrieve the underlying entity metamodel instance... |
String |
getEntityName()
The entity name which this persister maps. |
SessionFactoryImplementor |
getFactory()
Return the SessionFactory to which this persister "belongs". |
Serializable |
getIdentifier(Object object,
EntityMode entityMode)
Get the identifier of an instance (throw an exception if no identifier property) |
IdentifierGenerator |
getIdentifierGenerator()
Determine which identifier generation strategy is used for this entity. |
String |
getIdentifierPropertyName()
Get the name of the identifier property (or return null) - need not return the name of an actual Java property |
Type |
getIdentifierType()
Get the identifier type |
Class |
getMappedClass(EntityMode entityMode)
The persistent class, or null |
int[] |
getNaturalIdentifierProperties()
If the entity defines a natural id ( hasNaturalIdentifier() ), which
properties make up the natural id. |
Object[] |
getNaturalIdentifierSnapshot(Serializable id,
SessionImplementor session)
Retrieve the current state of the natural-id properties from the database. |
CascadeStyle[] |
getPropertyCascadeStyles()
Get the cascade styles of the propertes (optional operation) |
boolean[] |
getPropertyCheckability()
Get the "checkability" of the properties of this class (is the property dirty checked, does the cache need to be updated) |
boolean[] |
getPropertyInsertability()
Get the "insertability" of the properties of this class (does the property appear in an SQL INSERT) |
ValueInclusion[] |
getPropertyInsertGenerationInclusions()
Which of the properties of this class are database generated values on insert? |
boolean[] |
getPropertyLaziness()
|
String[] |
getPropertyNames()
Get the names of the class properties - doesn't have to be the names of the actual Java properties (used for XML generation only) |
boolean[] |
getPropertyNullability()
Get the nullability of the properties of this class |
Serializable[] |
getPropertySpaces()
Returns an array of objects that identify spaces in which properties of this entity are persisted, for instances of this class only. |
Type |
getPropertyType(String propertyName)
Get the type of a particular property by name. |
Type[] |
getPropertyTypes()
Get the Hibernate types of the class properties |
boolean[] |
getPropertyUpdateability()
Get the "updateability" of the properties of this class (does the property appear in an SQL UPDATE) |
ValueInclusion[] |
getPropertyUpdateGenerationInclusions()
Which of the properties of this class are database generated values on update? |
Object |
getPropertyValue(Object object,
int i,
EntityMode entityMode)
Get the value of a particular property |
Object |
getPropertyValue(Object object,
String propertyName,
EntityMode entityMode)
Get the value of a particular property |
Object[] |
getPropertyValues(Object object,
EntityMode entityMode)
Return the (loaded) values of the mapped properties of the object (not including backrefs) |
Object[] |
getPropertyValuesToInsert(Object object,
Map mergeMap,
SessionImplementor session)
Return the values of the insertable properties of the object (including backrefs) |
boolean[] |
getPropertyVersionability()
Get the "versionability" of the properties of this class (is the property optimistic-locked) |
Serializable[] |
getQuerySpaces()
Returns an array of objects that identify spaces in which properties of this entity are persisted, for instances of this class and its subclasses. |
String |
getRootEntityName()
Returns an object that identifies the space in which identifiers of this entity hierarchy are unique. |
EntityPersister |
getSubclassEntityPersister(Object instance,
SessionFactoryImplementor factory,
EntityMode entityMode)
Get the persister for an instance of this class or a subclass |
Object |
getVersion(Object object,
EntityMode entityMode)
Get the version number (or timestamp) from the object's version property (or return null if not versioned) |
int |
getVersionProperty()
If isVersioned() , then what is the index of the property
holding the locking value. |
VersionType |
getVersionType()
If isVersioned() , then what is the type of the property
holding the locking value. |
EntityMode |
guessEntityMode(Object object)
Try to discover the entity mode from the entity instance |
boolean |
hasCache()
Does this class have a cache. |
boolean |
hasCascades()
Determine whether this entity has any non-none cascading. |
boolean |
hasCollections()
Determine whether this entity contains references to persistent collections. |
boolean |
hasIdentifierProperty()
Determine whether the entity has a particular property holding the identifier value. |
boolean |
hasInsertGeneratedProperties()
Does this entity define any properties as being database generated on insert? |
boolean |
hasLazyProperties()
Determine whether this entity defines any lazy properties (ala bytecode instrumentation). |
boolean |
hasMutableProperties()
Determine whether any properties of this entity are considered mutable. |
boolean |
hasNaturalIdentifier()
Determine whether this entity defines a natural identifier. |
boolean |
hasProxy()
Determine whether this entity supports dynamic proxies. |
boolean |
hasSubselectLoadableCollections()
Determine whether this entity contains references to persistent collections which are fetchable by subselect? |
boolean |
hasUninitializedLazyProperties(Object object,
EntityMode entityMode)
Does the given instance have any uninitialized lazy properties? |
boolean |
hasUpdateGeneratedProperties()
Does this entity define any properties as being database generated on update? |
boolean |
implementsLifecycle(EntityMode entityMode)
Does the class implement the Lifecycle interface. |
boolean |
implementsValidatable(EntityMode entityMode)
Does the class implement the Validatable interface. |
Serializable |
insert(Object[] fields,
Object object,
SessionImplementor session)
Persist an instance, using a natively generated identifier (optional operation) |
void |
insert(Serializable id,
Object[] fields,
Object object,
SessionImplementor session)
Persist an instance |
Object |
instantiate(Serializable id,
EntityMode entityMode)
Create a class instance initialized with the given identifier |
boolean |
isBatchLoadable()
Is batch loading enabled? |
boolean |
isCacheInvalidationRequired()
Should we always invalidate the cache instead of recaching updated state |
boolean |
isIdentifierAssignedByInsert()
Are identifiers of this entity assigned known before the insert execution? Or, are they generated (in the database) by the insert execution. |
boolean |
isInherited()
Determine whether the entity is inherited one or more other entities. |
boolean |
isInstance(Object object,
EntityMode entityMode)
Is the given object an instance of this entity? |
boolean |
isInstrumented(EntityMode entityMode)
Has the class actually been bytecode instrumented? |
boolean |
isLazyPropertiesCacheable()
Should lazy properties of this entity be cached? |
boolean |
isMutable()
Determine whether instances of this entity are considered mutable. |
boolean |
isSelectBeforeUpdateRequired()
Is select snapshot before update enabled? |
boolean |
isSubclassEntityName(String entityName)
Determine whether the given name represents a subclass entity (or this entity itself) of the entity mapped by this persister. |
Boolean |
isTransient(Object object,
SessionImplementor session)
Is this a new transient instance? |
boolean |
isVersioned()
Determine whether optimistic locking by column is enabled for this entity. |
boolean |
isVersionPropertyGenerated()
Does this entity contain a version property that is defined to be database generated? |
Object |
load(Serializable id,
Object optionalObject,
LockMode lockMode,
SessionImplementor session)
Load an instance of the persistent class. |
void |
lock(Serializable id,
Object version,
Object object,
LockMode lockMode,
SessionImplementor session)
Do a version check (optional operation) |
void |
postInstantiate()
Finish the initialization of this object. |
void |
processInsertGeneratedProperties(Serializable id,
Object entity,
Object[] state,
SessionImplementor session)
Perform a select to retrieve the values of any generated properties back from the database, injecting these generated values into the given entity as well as writing this state to the PersistenceContext . |
void |
processUpdateGeneratedProperties(Serializable id,
Object entity,
Object[] state,
SessionImplementor session)
Perform a select to retrieve the values of any generated properties back from the database, injecting these generated values into the given entity as well as writing this state to the PersistenceContext . |
void |
resetIdentifier(Object entity,
Serializable currentId,
Object currentVersion,
EntityMode entityMode)
Set the identifier and version of the given instance back to its "unsaved" value, returning the id |
void |
setIdentifier(Object object,
Serializable id,
EntityMode entityMode)
Set the identifier of an instance (or do nothing if no identifier property) |
void |
setPropertyValue(Object object,
int i,
Object value,
EntityMode entityMode)
Set the value of a particular property |
void |
setPropertyValues(Object object,
Object[] values,
EntityMode entityMode)
Set the given values to the mapped properties of the given object |
void |
update(Serializable id,
Object[] fields,
int[] dirtyFields,
boolean hasDirtyCollection,
Object[] oldFields,
Object oldVersion,
Object object,
Object rowId,
SessionImplementor session)
Update a persistent instance |
Methods inherited from interface org.hibernate.cache.OptimisticCacheSource |
getVersionComparator |
Field Detail |
public static final String ENTITY_ID
Method Detail |
public void postInstantiate() throws MappingException
SessionFactory
lifecycle,
after all entity persisters have been instantiated.
MappingException
- Indicates an issue in the metdata.public SessionFactoryImplementor getFactory()
public String getRootEntityName()
public String getEntityName()
public EntityMetamodel getEntityMetamodel()
public boolean isSubclassEntityName(String entityName)
entityName
- The entity name to be checked.
public Serializable[] getPropertySpaces()
public Serializable[] getQuerySpaces()
getPropertySpaces()
, except that here we include subclass
entity spaces.
public boolean hasProxy()
public boolean hasCollections()
public boolean hasMutableProperties()
public boolean hasSubselectLoadableCollections()
public boolean hasCascades()
public boolean isMutable()
public boolean isInherited()
public boolean isIdentifierAssignedByInsert()
public Type getPropertyType(String propertyName) throws MappingException
propertyName
- The name of the property for which to retrieve
the typpe.
MappingException
- Typically indicates an unknown
property name.public int[] findDirty(Object[] currentState, Object[] previousState, Object owner, SessionImplementor session)
currentState
- The current snapshotpreviousState
- The baseline snapshotowner
- The entity containing the statesession
- The originating session
public int[] findModified(Object[] old, Object[] current, Object object, SessionImplementor session)
old
- The baseline snapshotcurrent
- The current snapshotobject
- The entity containing the statesession
- The originating session
public boolean hasIdentifierProperty()
public boolean canExtractIdOutOfEntity()
hasIdentifierProperty()
or
(2) the identifier is an embedded composite identifier; false otherwise.public boolean isVersioned()
isVersioned
in interface OptimisticCacheSource
public VersionType getVersionType()
isVersioned()
, then what is the type of the property
holding the locking value.
public int getVersionProperty()
isVersioned()
, then what is the index of the property
holding the locking value.
public boolean hasNaturalIdentifier()
public int[] getNaturalIdentifierProperties()
hasNaturalIdentifier()
), which
properties make up the natural id.
public Object[] getNaturalIdentifierSnapshot(Serializable id, SessionImplementor session)
id
- The identifier of the entity for which to retrieve the naturak-id values.session
- The session from which the request originated.
public IdentifierGenerator getIdentifierGenerator()
public boolean hasLazyProperties()
public Object load(Serializable id, Object optionalObject, LockMode lockMode, SessionImplementor session) throws HibernateException
HibernateException
public void lock(Serializable id, Object version, Object object, LockMode lockMode, SessionImplementor session) throws HibernateException
HibernateException
public void insert(Serializable id, Object[] fields, Object object, SessionImplementor session) throws HibernateException
HibernateException
public Serializable insert(Object[] fields, Object object, SessionImplementor session) throws HibernateException
HibernateException
public void delete(Serializable id, Object version, Object object, SessionImplementor session) throws HibernateException
HibernateException
public void update(Serializable id, Object[] fields, int[] dirtyFields, boolean hasDirtyCollection, Object[] oldFields, Object oldVersion, Object object, Object rowId, SessionImplementor session) throws HibernateException
HibernateException
public Type[] getPropertyTypes()
public String[] getPropertyNames()
public boolean[] getPropertyInsertability()
public ValueInclusion[] getPropertyInsertGenerationInclusions()
public ValueInclusion[] getPropertyUpdateGenerationInclusions()
public boolean[] getPropertyUpdateability()
public boolean[] getPropertyCheckability()
public boolean[] getPropertyNullability()
public boolean[] getPropertyVersionability()
public boolean[] getPropertyLaziness()
public CascadeStyle[] getPropertyCascadeStyles()
public Type getIdentifierType()
public String getIdentifierPropertyName()
public boolean isCacheInvalidationRequired()
public boolean isLazyPropertiesCacheable()
public boolean hasCache()
public CacheConcurrencyStrategy getCache()
public CacheEntryStructure getCacheEntryStructure()
public ClassMetadata getClassMetadata()
public boolean isBatchLoadable()
public boolean isSelectBeforeUpdateRequired()
public Object[] getDatabaseSnapshot(Serializable id, SessionImplementor session) throws HibernateException
HibernateException
public Object getCurrentVersion(Serializable id, SessionImplementor session) throws HibernateException
HibernateException
public Object forceVersionIncrement(Serializable id, Object currentVersion, SessionImplementor session) throws HibernateException
HibernateException
public EntityMode guessEntityMode(Object object)
public boolean isInstrumented(EntityMode entityMode)
public boolean hasInsertGeneratedProperties()
public boolean hasUpdateGeneratedProperties()
public boolean isVersionPropertyGenerated()
public void afterInitialize(Object entity, boolean lazyPropertiesAreUnfetched, SessionImplementor session)
public void afterReassociate(Object entity, SessionImplementor session)
public Object createProxy(Serializable id, SessionImplementor session) throws HibernateException
HibernateException
public Boolean isTransient(Object object, SessionImplementor session) throws HibernateException
HibernateException
public Object[] getPropertyValuesToInsert(Object object, Map mergeMap, SessionImplementor session) throws HibernateException
HibernateException
public void processInsertGeneratedProperties(Serializable id, Object entity, Object[] state, SessionImplementor session)
PersistenceContext
.
Note, that because we update the PersistenceContext here, callers
need to take care that they have already written the initial snapshot
to the PersistenceContext before calling this method.
id
- The entity's id value.entity
- The entity for which to get the state.state
- session
- The sessionpublic void processUpdateGeneratedProperties(Serializable id, Object entity, Object[] state, SessionImplementor session)
PersistenceContext
.
Note, that because we update the PersistenceContext here, callers
need to take care that they have already written the initial snapshot
to the PersistenceContext before calling this method.
id
- The entity's id value.entity
- The entity for which to get the state.state
- session
- The sessionpublic Class getMappedClass(EntityMode entityMode)
public boolean implementsLifecycle(EntityMode entityMode)
public boolean implementsValidatable(EntityMode entityMode)
public Class getConcreteProxyClass(EntityMode entityMode)
public void setPropertyValues(Object object, Object[] values, EntityMode entityMode) throws HibernateException
HibernateException
public void setPropertyValue(Object object, int i, Object value, EntityMode entityMode) throws HibernateException
HibernateException
public Object[] getPropertyValues(Object object, EntityMode entityMode) throws HibernateException
HibernateException
public Object getPropertyValue(Object object, int i, EntityMode entityMode) throws HibernateException
HibernateException
public Object getPropertyValue(Object object, String propertyName, EntityMode entityMode) throws HibernateException
HibernateException
public Serializable getIdentifier(Object object, EntityMode entityMode) throws HibernateException
HibernateException
public void setIdentifier(Object object, Serializable id, EntityMode entityMode) throws HibernateException
HibernateException
public Object getVersion(Object object, EntityMode entityMode) throws HibernateException
HibernateException
public Object instantiate(Serializable id, EntityMode entityMode) throws HibernateException
HibernateException
public boolean isInstance(Object object, EntityMode entityMode)
public boolean hasUninitializedLazyProperties(Object object, EntityMode entityMode)
public void resetIdentifier(Object entity, Serializable currentId, Object currentVersion, EntityMode entityMode)
currentId
- TODOcurrentVersion
- TODOpublic EntityPersister getSubclassEntityPersister(Object instance, SessionFactoryImplementor factory, EntityMode entityMode)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |