Uses of Interface
org.modeshape.graph.connector.RepositoryConnectionFactory

Packages that use RepositoryConnectionFactory
org.modeshape.graph The ModeShape Graph API defines the types that allow you to work with content organized as a graph. 
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.xmlfile The XML File connector is a connector that maintains a graph in transient in-process memory, where the graph is loaded initially from an XML file. 
org.modeshape.graph.request Sometimes its useful to work with a graph using objects that represent individual commands on the graph. 
org.modeshape.graph.search A small framework for a search engine component. 
org.modeshape.jcr The ModeShape implementation of the JCR API. 
org.modeshape.repository The components and services that make up ModeShape's lower-level graph engine, which is used within its JCR Engine. 
org.modeshape.search.lucene An implementation of the SearchEngine interface that uses the Lucene library. 
 

Uses of RepositoryConnectionFactory in org.modeshape.graph
 

Methods in org.modeshape.graph that return RepositoryConnectionFactory
 RepositoryConnectionFactory Graph.getConnectionFactory()
          Get the RepositoryConnectionFactory that this graph uses to create repository connections.
 

Methods in org.modeshape.graph with parameters of type RepositoryConnectionFactory
static Graph Graph.create(String sourceName, RepositoryConnectionFactory connectionFactory, ExecutionContext context)
          Create a graph instance that uses the supplied repository and context.
 

Constructors in org.modeshape.graph with parameters of type RepositoryConnectionFactory
Graph(String sourceName, RepositoryConnectionFactory connectionFactory, ExecutionContext context)
           
 

Uses of RepositoryConnectionFactory in org.modeshape.graph.connector
 

Methods in org.modeshape.graph.connector that return RepositoryConnectionFactory
 RepositoryConnectionFactory RepositoryContext.getRepositoryConnectionFactory()
          Get the factory for connections to other sources.
 

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

Methods in org.modeshape.graph.connector.inmemory that return RepositoryConnectionFactory
 RepositoryConnectionFactory InMemoryRepositorySource.DefaultRepositoryContext.getRepositoryConnectionFactory()
          Get the factory for connections to other sources.
 

Uses of RepositoryConnectionFactory in org.modeshape.graph.connector.xmlfile
 

Methods in org.modeshape.graph.connector.xmlfile that return RepositoryConnectionFactory
 RepositoryConnectionFactory XmlFileRepositorySource.DefaultRepositoryContext.getRepositoryConnectionFactory()
          Get the factory for connections to other sources.
 

Uses of RepositoryConnectionFactory in org.modeshape.graph.request
 

Methods in org.modeshape.graph.request with parameters of type RepositoryConnectionFactory
 void CompositeRequestChannel.start(ExecutorService executor, ExecutionContext context, RepositoryConnectionFactory connectionFactory)
          Begins processing any requests that have been added to this channel.
 

Uses of RepositoryConnectionFactory in org.modeshape.graph.search
 

Methods in org.modeshape.graph.search that return RepositoryConnectionFactory
protected  RepositoryConnectionFactory AbstractSearchEngine.getConnectionFactory()
           
 RepositoryConnectionFactory AbstractSearchEngine.Workspaces.getRepositoryConnectionFactory()
          Get the connection factory for repository sources.
 RepositoryConnectionFactory AbstractSearchEngine.SearchWorkspaces.getRepositoryConnectionFactory()
          Get the connection factory for repository sources.
 

Constructors in org.modeshape.graph.search with parameters of type RepositoryConnectionFactory
AbstractSearchEngine.SearchWorkspaces(RepositoryConnectionFactory connectionFactory)
           
AbstractSearchEngine(String sourceName, RepositoryConnectionFactory connectionFactory)
          Create a new provider instance that can be used to manage the indexes for the workspaces in a single source.
AbstractSearchEngine(String sourceName, RepositoryConnectionFactory connectionFactory, boolean verifyWorkspaceInSource)
          Create a new provider instance that can be used to manage the indexes for the workspaces in a single source.
SearchEngineIndexer(ExecutionContext context, SearchEngine searchEngine, RepositoryConnectionFactory connectionFactory, int maxDepthPerRead)
          Create an indexer that will update the indexes in the supplied search engine by crawling content, using the supplied connection factory to obtain connections.
 

Uses of RepositoryConnectionFactory in org.modeshape.jcr
 

Classes in org.modeshape.jcr that implement RepositoryConnectionFactory
protected  class JcrRepository.DelegatingConnectionFactory
           
 

Methods in org.modeshape.jcr that return RepositoryConnectionFactory
 RepositoryConnectionFactory JcrRepository.FederatedRepositoryContext.getRepositoryConnectionFactory()
          Get the factory for connections to other sources.
 

Constructors in org.modeshape.jcr with parameters of type RepositoryConnectionFactory
JcrRepository.DelegatingConnectionFactory(RepositoryConnectionFactory delegate, RepositorySource source)
           
JcrRepository.FederatedRepositoryContext(RepositoryConnectionFactory nonFederatingConnectionFactory)
           
 

Uses of RepositoryConnectionFactory in org.modeshape.repository
 

Classes in org.modeshape.repository that implement RepositoryConnectionFactory
 class RepositoryLibrary
          A library of RepositorySource instances and the RepositoryConnectionPool used to manage the connections for each.
 

Methods in org.modeshape.repository that return RepositoryConnectionFactory
 RepositoryConnectionFactory SimpleRepositoryContext.getRepositoryConnectionFactory()
          Get the factory for connections to other sources.
 RepositoryConnectionFactory ModeShapeEngine.getRepositoryConnectionFactory()
          Get a factory of connections, backed by the RepositorySor
 

Constructors in org.modeshape.repository with parameters of type RepositoryConnectionFactory
SimpleRepositoryContext(ExecutionContext context, Observer observer, RepositoryConnectionFactory connectionFactory)
           
 

Uses of RepositoryConnectionFactory in org.modeshape.search.lucene
 

Constructors in org.modeshape.search.lucene with parameters of type RepositoryConnectionFactory
AbstractLuceneSearchEngine(String sourceName, RepositoryConnectionFactory connectionFactory, boolean verifyWorkspaceInSource)
          Create a SearchEngine instance that uses Lucene.
LuceneSearchEngine(String sourceName, RepositoryConnectionFactory connectionFactory, boolean verifyWorkspaceInSource, int maxDepthPerIndexRead, File indexStorageDirectory, IndexRules rules, org.apache.lucene.analysis.Analyzer analyzer)
          Create a new instance of a SearchEngine that uses Lucene and a two-index design, and that stores the indexes in the supplied directory.
LuceneSearchEngine(String sourceName, RepositoryConnectionFactory connectionFactory, boolean verifyWorkspaceInSource, int maxDepthPerIndexRead, IndexRules rules, org.apache.lucene.analysis.Analyzer analyzer)
          Create a new instance of a SearchEngine that uses Lucene and a two-index design, and that stores the Lucene indexes in memory.
LuceneSearchEngine(String sourceName, RepositoryConnectionFactory connectionFactory, boolean verifyWorkspaceInSource, int maxDepthPerIndexRead, LuceneConfiguration configuration, IndexRules.Factory rulesFactory, org.apache.lucene.analysis.Analyzer analyzer)
          Create a new instance of a SearchEngine that uses Lucene and a two-index design, and that stores the indexes using the supplied LuceneConfiguration.
 



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