Package org.apache.ofbiz.entity.cache
Class EntityCache
- java.lang.Object
-
- org.apache.ofbiz.entity.cache.AbstractCache<GenericPK,GenericValue>
-
- org.apache.ofbiz.entity.cache.EntityCache
-
public class EntityCache extends AbstractCache<GenericPK,GenericValue>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
module
-
Fields inherited from class org.apache.ofbiz.entity.cache.AbstractCache
cacheNamePrefix, delegatorName, id
-
-
Constructor Summary
Constructors Constructor Description EntityCache(java.lang.String delegatorName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GenericValue
get(GenericPK pk)
GenericValue
put(GenericPK pk, GenericValue entity)
GenericValue
put(GenericValue entity)
void
remove(java.lang.String entityName, EntityCondition condition)
GenericValue
remove(GenericPK pk)
GenericValue
remove(GenericValue entity)
-
Methods inherited from class org.apache.ofbiz.entity.cache.AbstractCache
clear, getCache, getCacheName, getCacheNamePrefix, getCacheNamePrefixes, getCacheNames, getDelegator, getOrCreateCache, remove
-
-
-
-
Method Detail
-
get
public GenericValue get(GenericPK pk)
-
put
public GenericValue put(GenericValue entity)
-
put
public GenericValue put(GenericPK pk, GenericValue entity)
-
remove
public void remove(java.lang.String entityName, EntityCondition condition)
-
remove
public GenericValue remove(GenericValue entity)
-
remove
public GenericValue remove(GenericPK pk)
-
-