Uses of Interface
com.jenkov.mrpersister.itf.ISqlCache

Packages that use ISqlCache
com.jenkov.mrpersister.impl   
com.jenkov.mrpersister.itf   
 

Uses of ISqlCache in com.jenkov.mrpersister.impl
 

Classes in com.jenkov.mrpersister.impl that implement ISqlCache
 class SqlCache
           
 

Fields in com.jenkov.mrpersister.impl declared as ISqlCache
protected  ISqlCache PersistenceConfiguration.deleteSqlCache
           
protected  ISqlCache PersistenceConfiguration.insertSqlCache
           
protected  ISqlCache PersistenceConfiguration.readByPrimaryKeySqlCache
           
protected  ISqlCache PersistenceConfiguration.updateOptimisticSqlCache
           
protected  ISqlCache PersistenceConfiguration.updateSqlCache
           
 

Methods in com.jenkov.mrpersister.impl that return ISqlCache
 ISqlCache PersistenceConfiguration.getDeleteSqlCache()
           
 ISqlCache PersistenceConfiguration.getInsertSqlCache()
           
 ISqlCache PersistenceConfiguration.getReadByPrimaryKeySqlCache()
           
 ISqlCache PersistenceConfiguration.getUpdateOptimisticSqlCache()
           
 ISqlCache PersistenceConfiguration.getUpdateSqlCache()
           
 

Methods in com.jenkov.mrpersister.impl with parameters of type ISqlCache
protected  java.lang.String GenericDao.getSqlFromCache(java.lang.Object objectMappingKey, ISqlCache cache)
          Returns the SQL string stored in the given cache by the given object mapping key.
protected  java.lang.String AbstractDao.getSqlFromCache(java.lang.Object objectMappingKey, ISqlCache cache)
          Returns the SQL string stored in the given cache by the given object mapping key.
 void PersistenceConfiguration.setDeleteSqlCache(ISqlCache cache)
           
 void PersistenceConfiguration.setInsertSqlCache(ISqlCache cache)
           
 void PersistenceConfiguration.setReadByPrimaryKeySqlCache(ISqlCache readByPrimaryKeySqlCache)
           
 void PersistenceConfiguration.setUpdateOptimisticSqlCache(ISqlCache cache)
           
 void PersistenceConfiguration.setUpdateSqlCache(ISqlCache cache)
           
protected  void GenericDao.storeSqlInCache(java.lang.Object objectMappingKey, ISqlCache cache, java.lang.String sql)
          Stores the given SQL string in the given cache.
protected  void AbstractDao.storeSqlInCache(java.lang.Object objectMappingKey, ISqlCache cache, java.lang.String sql)
          Stores the given SQL string in the given cache.
 

Uses of ISqlCache in com.jenkov.mrpersister.itf
 

Methods in com.jenkov.mrpersister.itf that return ISqlCache
 ISqlCache IPersistenceConfiguration.getDeleteSqlCache()
          Returns the SQL cache used to store delete statements in this persistence configuration.
 ISqlCache IPersistenceConfiguration.getInsertSqlCache()
          Returns the SQL cache used to store insert SQL statements in this persistence configuration.
 ISqlCache IPersistenceConfiguration.getReadByPrimaryKeySqlCache()
          Returns the SQL cache used to store read-by-primary-key SQL statements in this persistence configuration.
 ISqlCache IPersistenceConfiguration.getUpdateOptimisticSqlCache()
          Returns the SQL cache used to store updateOptimistic SQL statements in this persistence configuration.
 ISqlCache IPersistenceConfiguration.getUpdateSqlCache()
          Returns the SQL cache used to store updateBatch SQL statements in this persistence configuration.
 

Methods in com.jenkov.mrpersister.itf with parameters of type ISqlCache
 void IPersistenceConfiguration.setDeleteSqlCache(ISqlCache cache)
          Sets the SQL cache to be used to store delete SQL statements in this persistence configuration.
 void IPersistenceConfiguration.setInsertSqlCache(ISqlCache cache)
          Sets the SQL cache to be used to store insert SQL statements in this persistence configuration.
 void IPersistenceConfiguration.setReadByPrimaryKeySqlCache(ISqlCache cache)
          Sets the SQL cache to be used to store read-by-primary-key SQL statements in this persistence configuration.
 void IPersistenceConfiguration.setUpdateOptimisticSqlCache(ISqlCache cache)
          Sets the SQL cache to be used to store updateOptimistic SQL statements in this persistence configuration.
 void IPersistenceConfiguration.setUpdateSqlCache(ISqlCache cache)
          Sets the SQL cache to be used to store updateBatch SQL statements in this persistence configuration.