Uses of Class
com.ibatis.db.sqlmap.cache.CacheModel

Packages that use CacheModel
com.ibatis.db.sqlmap   
com.ibatis.db.sqlmap.cache   
com.ibatis.db.sqlmap.cache.fifo   
com.ibatis.db.sqlmap.cache.lru   
com.ibatis.db.sqlmap.cache.memory   
com.ibatis.db.sqlmap.cache.oscache   
 

Uses of CacheModel in com.ibatis.db.sqlmap
 

Fields in com.ibatis.db.sqlmap declared as CacheModel
private  CacheModel MappedStatement.cache
           
 

Methods in com.ibatis.db.sqlmap that return CacheModel
private static CacheModel XmlSqlMapBuilder.buildCache(org.jdom.Element element, java.lang.String resourceName)
           
 CacheModel MappedStatement.getCache()
          Getter for the cache object used by this object
 CacheModel SqlMap.getCache(java.lang.String name)
          Gets a cache by name
 

Methods in com.ibatis.db.sqlmap with parameters of type CacheModel
 void SqlMap.addCache(CacheModel cache)
          Adds a (named) cache.
 void MappedStatement.setCache(CacheModel cache)
          Setter for the cache object used by this object
 

Uses of CacheModel in com.ibatis.db.sqlmap.cache
 

Methods in com.ibatis.db.sqlmap.cache with parameters of type CacheModel
 void CacheController.flush(CacheModel cacheModel)
           
 java.lang.Object CacheController.getObject(CacheModel cacheModel, java.lang.Object key)
           
 void CacheController.putObject(CacheModel cacheModel, java.lang.Object key, java.lang.Object object)
           
 

Uses of CacheModel in com.ibatis.db.sqlmap.cache.fifo
 

Methods in com.ibatis.db.sqlmap.cache.fifo with parameters of type CacheModel
 void FifoCacheController.flush(CacheModel cacheModel)
          Flushes the cache.
 java.lang.Object FifoCacheController.getObject(CacheModel cacheModel, java.lang.Object key)
          Get an object out of the cache.
 void FifoCacheController.putObject(CacheModel cacheModel, java.lang.Object key, java.lang.Object value)
          Add an object to the cache
 

Uses of CacheModel in com.ibatis.db.sqlmap.cache.lru
 

Methods in com.ibatis.db.sqlmap.cache.lru with parameters of type CacheModel
 void LruCacheController.flush(CacheModel cacheModel)
          Flushes the cache.
 java.lang.Object LruCacheController.getObject(CacheModel cacheModel, java.lang.Object key)
          Get an object out of the cache.
 void LruCacheController.putObject(CacheModel cacheModel, java.lang.Object key, java.lang.Object value)
          Add an object to the cache
 

Uses of CacheModel in com.ibatis.db.sqlmap.cache.memory
 

Methods in com.ibatis.db.sqlmap.cache.memory with parameters of type CacheModel
 void MemoryCacheController.flush(CacheModel cacheModel)
          Flushes the cache.
 java.lang.Object MemoryCacheController.getObject(CacheModel cacheModel, java.lang.Object key)
          Get an object out of the cache.
 void MemoryCacheController.putObject(CacheModel cacheModel, java.lang.Object key, java.lang.Object value)
          Add an object to the cache
 

Uses of CacheModel in com.ibatis.db.sqlmap.cache.oscache
 

Methods in com.ibatis.db.sqlmap.cache.oscache with parameters of type CacheModel
 void OSCacheController.flush(CacheModel cacheModel)
           
 java.lang.Object OSCacheController.getObject(CacheModel cacheModel, java.lang.Object key)
           
 void OSCacheController.putObject(CacheModel cacheModel, java.lang.Object key, java.lang.Object object)