org.hibernate.cache
Class CacheKey
java.lang.Objectorg.hibernate.cache.CacheKey
- Serializable
public class CacheKey
extends java.lang.Object
implements Serializable
Allows multiple entity classes / collection roles to be
stored in the same cache region. Also allows for composite
keys which do not properly implement equals()/hashCode().
CacheKey
public CacheKey(Serializable id,
Type type,
String entityOrRoleName,
EntityMode entityMode,
SessionFactoryImplementor factory) Construct a new key for a collection or entity instance.
Note that an entity name should always be the root entity
name, not a subclass entity name.
id - The identifier associated with the cached datatype - The Hibernate type mappingentityOrRoleName - The entity or collection-role name.entityMode - The entiyt mode of the originating sessionfactory - The session factory for which we are caching
equals
public boolean equals(Object other)
getEntityOrRoleName
public String getEntityOrRoleName()
getKey
public Serializable getKey()
hashCode
public int hashCode()
toString
public String toString()