Uses of Class
org.jasig.portal.concurrency.caching.CachedEntityInvalidation

Packages that use CachedEntityInvalidation
org.jasig.portal.concurrency.caching   
 

Uses of CachedEntityInvalidation in org.jasig.portal.concurrency.caching
 

Methods in org.jasig.portal.concurrency.caching that return CachedEntityInvalidation
 CachedEntityInvalidation[] RDBMCachedEntityInvalidationStore.find(java.lang.Class entityType, java.lang.String entityKey)
          Retrieve CachedEntityInvalidations from the underlying entity invalidation store.
 CachedEntityInvalidation[] RDBMCachedEntityInvalidationStore.findAfter(java.util.Date invalidation, java.lang.Class entityType, java.lang.String entityKey, java.lang.Integer cacheID)
          Retrieve CachedEntityInvalidations from the underlying store.
private  CachedEntityInvalidation RDBMCachedEntityInvalidationStore.instanceFromResultSet(java.sql.ResultSet rs)
          Extract values from ResultSet and create a new CachedEntityInvalidation.
private  CachedEntityInvalidation RDBMCachedEntityInvalidationStore.newInstance(java.lang.Class type, java.lang.String key, java.util.Date expiration, int cacheID)
           
private  CachedEntityInvalidation[] RDBMCachedEntityInvalidationStore.primSelect(java.lang.String sql, java.sql.Connection conn)
          Retrieve CachedEntityInvalidations from the underlying store.
private  CachedEntityInvalidation[] RDBMCachedEntityInvalidationStore.select(java.lang.Class entityType, java.lang.String entityKey, java.util.Date invalidation, java.lang.Integer cacheID, java.sql.Connection conn)
          Retrieve CachedEntityInvalidation from the underlying store.
private  CachedEntityInvalidation[] RDBMCachedEntityInvalidationStore.selectAfter(java.lang.Class entityType, java.lang.String entityKey, java.util.Date invalidation, java.lang.Integer cacheID, java.sql.Connection conn)
          Retrieve CachedEntityInvalidations from the underlying store.
 

Methods in org.jasig.portal.concurrency.caching with parameters of type CachedEntityInvalidation
 void RDBMCachedEntityInvalidationStore.add(CachedEntityInvalidation cachedEnt)
          Adds/updates the row corresponding to this invalidation in the underlying store.
private  boolean RDBMCachedEntityInvalidationStore.existsInStore(CachedEntityInvalidation ent, java.sql.Connection conn)
          Answers if this entity is represented in the store.
private  void RDBMCachedEntityInvalidationStore.primAdd(CachedEntityInvalidation ent, java.sql.Connection conn)
          Add the invalid entity to the underlying store.
private  void RDBMCachedEntityInvalidationStore.primUpdate(CachedEntityInvalidation ent, java.sql.Connection conn)
          Updates the invalid enity's expiration in the underlying store.