Uses of Interface
org.modeshape.graph.cache.CachePolicy

Packages that use CachePolicy
org.modeshape.connector.infinispan The classes that make up the connector that stores content in a deployed instance of Infinispan. 
org.modeshape.connector.jbosscache The classes that make up the connector that stores content in a JBoss Cache instance. 
org.modeshape.connector.jcr The JCR connector provides access to a JCR repository instance running in the same process (and accessible via JNDI). 
org.modeshape.connector.store.jpa The classes that make up the connector that stores content in a relational database via JDBC and JPA. 
org.modeshape.connector.store.jpa.model.simple The classes that define the "simple" storage model for the JPA connector. 
org.modeshape.graph The ModeShape Graph API defines the types that allow you to work with content organized as a graph. 
org.modeshape.graph.cache Caching of graph content is controlled with cache policies, and these are used in connectors and in requests (among other places). 
org.modeshape.graph.connector ModeShape uses connectors to access information from external systems (such as databases, other repositories, services, applications, etc.) and create graph representations of that information. 
org.modeshape.graph.connector.base This package defines a series of classes that can serve as base classes for a connector implementation. 
org.modeshape.graph.connector.inmemory The In-Memory Connector represents a connector that maintains a graph in transient in-process memory. 
org.modeshape.graph.connector.map The MapRepository class and its supporting classes provide a default implementation of the connector classes for connectors that support the transient or persistent mapping of a UUID to a standard representation of a node
org.modeshape.graph.connector.path The PathRepository class and its supporting classes provide a default read-only implementation of the connector classes for connectors that only support path-based access to a standard representation of a node
org.modeshape.graph.connector.path.cache The PathRepositoryCache class and its supporting classes provide a standard caching mechanism for path-based repositories. 
org.modeshape.graph.request Sometimes its useful to work with a graph using objects that represent individual commands on the graph. 
org.modeshape.graph.request.processor This portion of the ModeShape Graph API defines the processor for requests
org.modeshape.graph.search A small framework for a search engine component. 
 

Uses of CachePolicy in org.modeshape.connector.infinispan
 

Methods in org.modeshape.connector.infinispan that return CachePolicy
 CachePolicy InfinispanSource.getDefaultCachePolicy()
          Get the default cache policy for this source, or null if the global default cache policy should be used
 

Methods in org.modeshape.connector.infinispan with parameters of type CachePolicy
 void InfinispanSource.setDefaultCachePolicy(CachePolicy defaultCachePolicy)
           
 

Uses of CachePolicy in org.modeshape.connector.jbosscache
 

Methods in org.modeshape.connector.jbosscache that return CachePolicy
 CachePolicy JBossCacheSource.getDefaultCachePolicy()
          Get the default cache policy for this source, or null if the global default cache policy should be used
 

Methods in org.modeshape.connector.jbosscache with parameters of type CachePolicy
 void JBossCacheSource.setDefaultCachePolicy(CachePolicy defaultCachePolicy)
           
 

Uses of CachePolicy in org.modeshape.connector.jcr
 

Methods in org.modeshape.connector.jcr that return CachePolicy
 CachePolicy JcrRepositorySource.getDefaultCachePolicy()
          Get the default cache policy for this source, or null if the global default cache policy should be used
 CachePolicy JcrRepositoryConnection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 

Methods in org.modeshape.connector.jcr with parameters of type CachePolicy
 void JcrRepositorySource.setDefaultCachePolicy(CachePolicy defaultCachePolicy)
           
 

Constructors in org.modeshape.connector.jcr with parameters of type CachePolicy
JcrRequestProcessor(String sourceName, ExecutionContext context, Repository repository, Observer observer, Credentials credentials, CachePolicy defaultCachePolicy)
           
 

Uses of CachePolicy in org.modeshape.connector.store.jpa
 

Methods in org.modeshape.connector.store.jpa that return CachePolicy
 CachePolicy JpaSource.getCachePolicy()
          Returns the current cache policy
 

Uses of CachePolicy in org.modeshape.connector.store.jpa.model.simple
 

Methods in org.modeshape.connector.store.jpa.model.simple that return CachePolicy
 CachePolicy SimpleJpaConnection.getDefaultCachePolicy()
           
 

Uses of CachePolicy in org.modeshape.graph
 

Methods in org.modeshape.graph that return CachePolicy
 CachePolicy Graph.getDefaultCachePolicy()
          Get the default cache policy for this graph.
 

Uses of CachePolicy in org.modeshape.graph.cache
 

Classes in org.modeshape.graph.cache that implement CachePolicy
 class BasicCachePolicy
          A basic mutable CachePolicy implementation.
 class ImmutableCachePolicy
          A basic CachePolicy implementation with a fixed time to live.
 

Methods in org.modeshape.graph.cache that return CachePolicy
 CachePolicy Cacheable.getCachePolicy()
          Get the caching policy to be used for this object.
 CachePolicy ImmutableCachePolicy.getUnmodifiable()
           
 CachePolicy BasicCachePolicy.getUnmodifiable()
           
 

Methods in org.modeshape.graph.cache with parameters of type CachePolicy
 void Cacheable.setCachePolicy(CachePolicy cachePolicy)
          Set the caching policy for this object.
 

Uses of CachePolicy in org.modeshape.graph.connector
 

Methods in org.modeshape.graph.connector that return CachePolicy
 CachePolicy RepositoryConnectionPool.ConnectionWrapper.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 CachePolicy RepositoryConnection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 

Uses of CachePolicy in org.modeshape.graph.connector.base
 

Fields in org.modeshape.graph.connector.base declared as CachePolicy
protected  CachePolicy AbstractRepositorySource.cachePolicy
           
static CachePolicy AbstractRepositorySource.DEFAULT_CACHE_POLICY
          The default cache policy for this repository source (no caching)
 

Methods in org.modeshape.graph.connector.base that return CachePolicy
 CachePolicy Connection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 CachePolicy BaseRepositorySource.getDefaultCachePolicy()
          Returns the cache policy for the repository source
 CachePolicy AbstractRepositorySource.getDefaultCachePolicy()
          Returns the cache policy for the repository source
 

Methods in org.modeshape.graph.connector.base with parameters of type CachePolicy
 void AbstractRepositorySource.setCachePolicy(CachePolicy cachePolicy)
          Sets the cache policy for the repository and replaces the path repository cache with a new path repository cache tied to the new cache policy
 

Uses of CachePolicy in org.modeshape.graph.connector.inmemory
 

Methods in org.modeshape.graph.connector.inmemory that return CachePolicy
 CachePolicy InMemoryRepositorySource.getDefaultCachePolicy()
          Get the default cache policy for this source, or null if the global default cache policy should be used
 

Methods in org.modeshape.graph.connector.inmemory with parameters of type CachePolicy
 void InMemoryRepositorySource.setDefaultCachePolicy(CachePolicy defaultCachePolicy)
           
 

Uses of CachePolicy in org.modeshape.graph.connector.map
 

Methods in org.modeshape.graph.connector.map that return CachePolicy
 CachePolicy MapRepositorySource.getDefaultCachePolicy()
          Returns the cache policy for the repository source
 CachePolicy MapRepositoryConnection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 

Uses of CachePolicy in org.modeshape.graph.connector.path
 

Methods in org.modeshape.graph.connector.path that return CachePolicy
 CachePolicy PathRepositoryConnection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 

Uses of CachePolicy in org.modeshape.graph.connector.path.cache
 

Subinterfaces of CachePolicy in org.modeshape.graph.connector.path.cache
 interface PathCachePolicy
          The provides a method for selectively allowing or disallowing nodes to be cached based on their size, volatility, or any other factor that can be determined for the node.
 

Classes in org.modeshape.graph.connector.path.cache that implement CachePolicy
static class InMemoryWorkspaceCache.InMemoryCachePolicy
          Trivial path cache policy implementation that caches all nodes in an in-memory cache.
 class NoCachePolicy
          Trivial path cache policy implementation that performs no caching at all
 

Uses of CachePolicy in org.modeshape.graph.request
 

Methods in org.modeshape.graph.request that return CachePolicy
 CachePolicy CacheableRequest.getCachePolicy()
          Get the caching policy to be used for this object.
 

Methods in org.modeshape.graph.request with parameters of type CachePolicy
 void CacheableRequest.setCachePolicy(CachePolicy cachePolicy)
          Set the caching policy for this object.
 

Uses of CachePolicy in org.modeshape.graph.request.processor
 

Methods in org.modeshape.graph.request.processor that return CachePolicy
protected  CachePolicy RequestProcessor.getDefaultCachePolicy()
           
 

Methods in org.modeshape.graph.request.processor with parameters of type CachePolicy
protected  void RequestProcessor.setCacheableInfo(CacheableRequest request, CachePolicy cachePolicy)
          Set the supplied request to have the supplied cache policy and the current time in UTC.
 

Constructors in org.modeshape.graph.request.processor with parameters of type CachePolicy
RequestProcessor(String sourceName, ExecutionContext context, Observer observer, DateTime now, CachePolicy defaultCachePolicy)
           
 

Uses of CachePolicy in org.modeshape.graph.search
 

Methods in org.modeshape.graph.search that return CachePolicy
 CachePolicy SearchableRepositorySource.AbstractConnection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 



Copyright © 2008-2010 JBoss, a division of Red Hat. All Rights Reserved.