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.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.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. 
 

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.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 RepositoryConnection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 

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.
 



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