Uses of Class
systemic.sif.sbpframework.persist.model.DOCache

Packages that use DOCache
systemic.sif.sbpframework.persist.dao   
systemic.sif.sbpframework.persist.model   
systemic.sif.sbpframework.persist.servcie   
 

Uses of DOCache in systemic.sif.sbpframework.persist.dao
 

Methods in systemic.sif.sbpframework.persist.dao that return DOCache
 DOCache DOCacheDAO.retrieveCachedObject(java.lang.String sifObjectName, java.lang.String flatKey, java.lang.String applicationId, java.lang.String zoneId, boolean loadAll)
          This method attempts to retrieve a cached SIF Object based on the object name, object key (flatten key) and the agentId.
 

Methods in systemic.sif.sbpframework.persist.dao that return types with arguments of type DOCache
 java.util.List<DOCache> DOCacheDAO.getExpiredObjects(java.lang.String applicationId, java.lang.String agentId)
          This method returns all objects in the cache that have remaining dependencies but have an expiry date older than the current date and time.
 java.util.List<DOCache> DOCacheDAO.getObjectsWithoutDependencies(java.lang.String sifObjectName, java.lang.String applicationId, java.lang.String agentId)
          This method gets all cached objects of a given type for a particular application and agent that have no remaining dependencies.
 

Methods in systemic.sif.sbpframework.persist.dao with parameters of type DOCache
 void DOCacheDAO.removeCachedObject(DOCache cacheObject)
          This method removes the given object and all its dependencies from the cache.
 void DOCacheDAO.save(DOCache cacheObject)
          This method saves the given object to the DB.
 

Uses of DOCache in systemic.sif.sbpframework.persist.model
 

Methods in systemic.sif.sbpframework.persist.model that return types with arguments of type DOCache
 java.util.Set<DOCache> DOCObject.getParents()
           
 

Method parameters in systemic.sif.sbpframework.persist.model with type arguments of type DOCache
 void DOCObject.setParents(java.util.Set<DOCache> parents)
           
 

Uses of DOCache in systemic.sif.sbpframework.persist.servcie
 

Methods in systemic.sif.sbpframework.persist.servcie that return DOCache
 DOCache DOCService.retrieveCachedObject(openadk.library.SIFDataObject sifObject, java.lang.String applicationId, java.lang.String zoneId, boolean loadAll)
          This method attempts to retrieve a cached SIF Object based on the object name, object key (flatten key) and the agentId.
 DOCache DOCService.retrieveCachedObject(java.lang.String sifObjectName, java.lang.String flatKey, java.lang.String applicationId, java.lang.String zoneId, boolean loadAll)
           
 

Methods in systemic.sif.sbpframework.persist.servcie that return types with arguments of type DOCache
 java.util.List<DOCache> DOCService.getExpiredObjects(java.lang.String applicationId, java.lang.String agentId)
          This method returns all objects in the cache that have remaining dependencies but have an expiry date older than the current date and time.
 java.util.List<DOCache> DOCService.getObjectsWithoutDependencies(java.lang.String sifObjectName, java.lang.String applicationId, java.lang.String agentId)
          This method gets all cached objects of a given type for a particular application and agent that have no remaining dependencies.
 

Methods in systemic.sif.sbpframework.persist.servcie with parameters of type DOCache
 void DOCService.cacheObject(DOCache sifObjectToCache, java.lang.String agentId, java.lang.String applicationId, java.lang.String zoneId)
          This method will save the DOCache object with all its child elements.
 void DOCService.removeCachedObject(DOCache cacheObject)
          This method removes the given object and all its dependencies from the cache.