Class ItemOldPropertyCacheKey
- java.lang.Object
-
- de.hybris.platform.persistence.ItemCacheKey
-
- de.hybris.platform.persistence.property.ItemPropertyCacheKey
-
- de.hybris.platform.persistence.property.ItemOldPropertyCacheKey
-
- All Implemented Interfaces:
PropertyOwner,java.lang.Cloneable
public final class ItemOldPropertyCacheKey extends ItemPropertyCacheKey
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringQUALI-
Fields inherited from class de.hybris.platform.persistence.property.ItemPropertyCacheKey
cloned, info, itemPK
-
-
Constructor Summary
Constructors Modifier Constructor Description ItemOldPropertyCacheKey()protectedItemOldPropertyCacheKey(PK itemPK)clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Objectclone()protected java.lang.ObjectcloneValue(java.lang.Object value)this method should clone a cached value object.protected java.lang.ObjectcomputeValue(ItemEJB item)initially creates the cached data object for a specified item.protected voiddispose(boolean inRemove)called when this cache key object is remove from cache.protected java.lang.StringgetQualifier()protected booleanisValid(ItemEJB item)-
Methods inherited from class de.hybris.platform.persistence.property.ItemPropertyCacheKey
createUnmodifiableViewOfValue, notifyPropertyDataChanged
-
Methods inherited from class de.hybris.platform.persistence.ItemCacheKey
getCopy, getValueForModification, getValueForReading, getValueForReadingIfAvailable, getValueInternal
-
-
-
-
Constructor Detail
-
ItemOldPropertyCacheKey
public ItemOldPropertyCacheKey()
-
ItemOldPropertyCacheKey
protected ItemOldPropertyCacheKey(PK itemPK)
clone constructor
-
-
Method Detail
-
clone
protected java.lang.Object clone() throws java.lang.CloneNotSupportedException- Overrides:
clonein classItemPropertyCacheKey- Throws:
java.lang.CloneNotSupportedException
-
getQualifier
protected java.lang.String getQualifier()
- Overrides:
getQualifierin classItemPropertyCacheKey- Returns:
- an key for the CachedValue that is unique within the Item instance
-
isValid
protected boolean isValid(ItemEJB item)
- Overrides:
isValidin classItemPropertyCacheKey- Returns:
- true if the cache key object is still valid for the given item. this is called each time when the cache key is retrieved.
-
dispose
protected void dispose(boolean inRemove)
Description copied from class:ItemCacheKeycalled when this cache key object is remove from cache.- Overrides:
disposein classItemPropertyCacheKey
-
computeValue
protected java.lang.Object computeValue(ItemEJB item)
Description copied from class:ItemCacheKeyinitially creates the cached data object for a specified item. this method is only called once for one ItemCacheKey instance.- Overrides:
computeValuein classItemPropertyCacheKey
-
cloneValue
protected java.lang.Object cloneValue(java.lang.Object value)
Description copied from class:ItemCacheKeythis method should clone a cached value object. it will be called duringItemCacheKey.getCopy()only if this ItemCacheKey object already holds a cached value object.- Overrides:
cloneValuein classItemPropertyCacheKey
-
-