Uses of Interface
org.jboss.dna.graph.cache.CachePolicy

Packages that use CachePolicy
org.jboss.dna.connector.filesystem The classes that make up the connector that accesses the files and directories on a local file system and exposes them as content in a repository. 
org.jboss.dna.connector.infinispan The classes that make up the connector that stores content in a deployed instance of Infinispan. 
org.jboss.dna.connector.jbosscache The classes that make up the connector that stores content in a JBoss Cache instance. 
org.jboss.dna.connector.store.jpa The classes that make up the connector that stores content in a relational database via JDBC and JPA. 
org.jboss.dna.connector.svn The classes that make up the connector that accesses content from an SVN repository. 
org.jboss.dna.graph The JBoss DNA Graph API defines the types that allow you to work with content organized as a graph. 
org.jboss.dna.graph.cache Caching of graph content is controlled with cache policies, and these are used in connectors and in requests (among other places). 
org.jboss.dna.graph.connector JBoss DNA uses connectors to access information from external systems (such as databases, other repositories, services, applications, etc.) and create graph representations of that information. 
org.jboss.dna.graph.connector.inmemory The In-Memory Connector represents a connector that maintains a graph in transient in-process memory. 
org.jboss.dna.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.jboss.dna.graph.request Sometimes its useful to work with a graph using objects that represent individual commands on the graph. 
 

Uses of CachePolicy in org.jboss.dna.connector.filesystem
 

Methods in org.jboss.dna.connector.filesystem that return CachePolicy
 CachePolicy FileSystemConnection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 

Uses of CachePolicy in org.jboss.dna.connector.infinispan
 

Methods in org.jboss.dna.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.jboss.dna.connector.infinispan with parameters of type CachePolicy
 void InfinispanSource.setDefaultCachePolicy(CachePolicy defaultCachePolicy)
           
 

Uses of CachePolicy in org.jboss.dna.connector.jbosscache
 

Methods in org.jboss.dna.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.jboss.dna.connector.jbosscache with parameters of type CachePolicy
 void JBossCacheSource.setDefaultCachePolicy(CachePolicy defaultCachePolicy)
           
 

Uses of CachePolicy in org.jboss.dna.connector.store.jpa
 

Methods in org.jboss.dna.connector.store.jpa that return CachePolicy
 CachePolicy JpaConnection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 

Uses of CachePolicy in org.jboss.dna.connector.svn
 

Methods in org.jboss.dna.connector.svn that return CachePolicy
 CachePolicy SVNRepositoryConnection.getDefaultCachePolicy()
          Get the default cache policy for this repository.
 

Constructors in org.jboss.dna.connector.svn with parameters of type CachePolicy
SVNRepositoryConnection(String sourceName, org.tmatesoft.svn.core.io.SVNRepository defaultWorkspace, Set<String> availableWorkspaceNames, boolean creatingWorkspacesAllowed, CachePolicy cachePolicy, boolean updatesAllowed, RepositoryAccessData accessData)
          default workspace must can be a root repository or any folders from the root directory. available workspace names must consist of URLs from repository folders.
 

Uses of CachePolicy in org.jboss.dna.graph
 

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

Uses of CachePolicy in org.jboss.dna.graph.cache
 

Classes in org.jboss.dna.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.jboss.dna.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.jboss.dna.graph.cache with parameters of type CachePolicy
 void Cacheable.setCachePolicy(CachePolicy cachePolicy)
          Set the caching policy for this object.
 

Uses of CachePolicy in org.jboss.dna.graph.connector
 

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

Uses of CachePolicy in org.jboss.dna.graph.connector.inmemory
 

Methods in org.jboss.dna.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.jboss.dna.graph.connector.inmemory with parameters of type CachePolicy
 void InMemoryRepositorySource.setDefaultCachePolicy(CachePolicy defaultCachePolicy)
           
 

Uses of CachePolicy in org.jboss.dna.graph.connector.map
 

Methods in org.jboss.dna.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.jboss.dna.graph.request
 

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

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



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