当前页面:
在线文档首页 >
Hibernate 3.2.4 正式版 API 英文文档
CacheKey (Hibernate API Documentation) - Hibernate 3.2.4 正式版 API 英文文档
org.hibernate.cache
Class CacheKey
java.lang.Object
org.hibernate.cache.CacheKey
- All Implemented Interfaces:
- Serializable
- public class CacheKey
- extends 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().
- Author:
- Gavin King
- See Also:
- Serialized Form
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.
- Parameters:
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
toString
public String toString()
equals
public boolean equals(Object other)
hashCode
public int hashCode()
getKey
public Serializable getKey()
getEntityOrRoleName
public String getEntityOrRoleName()