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

Packages that use RepositoryConnection
org.modeshape.connector.disk The classes that make up the connector that stores content in a ModeShape-specific format on fixed disk. 
org.modeshape.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.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.meta.jdbc The classes that make up the connector that accesses the database schema metadata exposed by JDBC drivers for existing relational databases. 
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.connector.svn The classes that make up the connector that accesses content from an SVN repository. 
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.base This package defines a series of classes that can serve as base classes for a connector implementation. 
org.modeshape.graph.connector.federation ModeShape provides a federated connector that is able to access repository content from multiple external systems and make that content look like it exists in a single unified repository. 
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.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.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. 
 

Uses of RepositoryConnection in org.modeshape.connector.disk
 

Methods in org.modeshape.connector.disk that return RepositoryConnection
 RepositoryConnection DiskSource.getConnection()
          Get a connection from this source.
 

Uses of RepositoryConnection in org.modeshape.connector.filesystem
 

Methods in org.modeshape.connector.filesystem that return RepositoryConnection
 RepositoryConnection FileSystemSource.getConnection()
          Get a connection from this source.
 

Uses of RepositoryConnection in org.modeshape.connector.infinispan
 

Methods in org.modeshape.connector.infinispan that return RepositoryConnection
 RepositoryConnection BaseInfinispanSource.getConnection()
          Get a connection from this source.
 

Uses of RepositoryConnection in org.modeshape.connector.jbosscache
 

Methods in org.modeshape.connector.jbosscache that return RepositoryConnection
 RepositoryConnection JBossCacheSource.getConnection()
          Get a connection from this source.
 

Uses of RepositoryConnection in org.modeshape.connector.jcr
 

Classes in org.modeshape.connector.jcr that implement RepositoryConnection
 class JcrRepositoryConnection
           
 

Methods in org.modeshape.connector.jcr that return RepositoryConnection
 RepositoryConnection JcrRepositorySource.getConnection()
          Get a connection from this source.
 

Uses of RepositoryConnection in org.modeshape.connector.meta.jdbc
 

Methods in org.modeshape.connector.meta.jdbc that return RepositoryConnection
 RepositoryConnection JdbcMetadataSource.getConnection()
          Get a connection from this source.
 

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

Methods in org.modeshape.connector.store.jpa that return RepositoryConnection
abstract  RepositoryConnection Model.createConnection(JpaSource source)
           
 RepositoryConnection JpaSource.getConnection()
          Get a connection from this source.
 

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

Classes in org.modeshape.connector.store.jpa.model.simple that implement RepositoryConnection
 class SimpleJpaConnection
          The repository connection to JPA repository sources that use the simple model.
 

Methods in org.modeshape.connector.store.jpa.model.simple that return RepositoryConnection
 RepositoryConnection SimpleModel.createConnection(JpaSource source)
           
 

Uses of RepositoryConnection in org.modeshape.connector.svn
 

Methods in org.modeshape.connector.svn that return RepositoryConnection
 RepositoryConnection SvnRepositorySource.getConnection()
          Get a connection from this source.
 

Uses of RepositoryConnection in org.modeshape.graph
 

Methods in org.modeshape.graph with parameters of type RepositoryConnection
static Graph Graph.create(RepositoryConnection connection, ExecutionContext context)
          Create a graph instance that uses the supplied RepositoryConnection and context.
 

Uses of RepositoryConnection in org.modeshape.graph.connector
 

Classes in org.modeshape.graph.connector that implement RepositoryConnection
protected  class RepositoryConnectionPool.ConnectionWrapper
           
 

Methods in org.modeshape.graph.connector that return RepositoryConnection
 RepositoryConnection RepositoryConnectionFactory.createConnection(String sourceName)
          Create a RepositoryConnection using the given RepositorySource name.
 RepositoryConnection RepositorySource.getConnection()
          Get a connection from this source.
 RepositoryConnection RepositoryConnectionPool.getConnection()
          Get a connection from the pool.
protected  RepositoryConnection RepositoryConnectionPool.ConnectionWrapper.getOriginal()
           
 

Constructors in org.modeshape.graph.connector with parameters of type RepositoryConnection
RepositoryConnectionPool.ConnectionWrapper(RepositoryConnection connection)
           
 

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

Classes in org.modeshape.graph.connector.base that implement RepositoryConnection
 class Connection<NodeType extends Node,WorkspaceType extends Workspace>
          A connection to a Repository.
 

Uses of RepositoryConnection in org.modeshape.graph.connector.federation
 

Methods in org.modeshape.graph.connector.federation that return RepositoryConnection
 RepositoryConnection FederatedRepositorySource.getConnection()
          Get a connection from this source.
 

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

Methods in org.modeshape.graph.connector.inmemory that return RepositoryConnection
 RepositoryConnection InMemoryRepositorySource.getConnection()
          Get a connection from this source.
 

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

Classes in org.modeshape.graph.connector.map that implement RepositoryConnection
 class MapRepositoryConnection
          A connection to a MapRepository.
 

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

Classes in org.modeshape.graph.connector.path that implement RepositoryConnection
 class PathRepositoryConnection
           
 

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

Methods in org.modeshape.graph.connector.xmlfile that return RepositoryConnection
 RepositoryConnection XmlFileRepositorySource.getConnection()
          Get a connection from this source.
 

Uses of RepositoryConnection in org.modeshape.graph.search
 

Classes in org.modeshape.graph.search that implement RepositoryConnection
protected  class SearchableRepositorySource.AbstractConnection
           
protected  class SearchableRepositorySource.ParallelConnection
          A RepositoryConnection implementation that calls the delegate processor in a background thread, allowing the processing of the FullTextSearchRequest and AccessQueryRequest objects to be done in this thread and in parallel with other requests.
protected  class SearchableRepositorySource.SynchronousConnection
          A RepositoryConnection implementation that calls the delegate processor in the calling thread.
 

Methods in org.modeshape.graph.search that return RepositoryConnection
protected  RepositoryConnection SearchableRepositorySource.AbstractConnection.delegateConnection()
           
 RepositoryConnection SearchableRepositorySource.getConnection()
          Get a connection from this source.
 

Uses of RepositoryConnection in org.modeshape.jcr
 

Methods in org.modeshape.jcr that return RepositoryConnection
 RepositoryConnection JcrRepository.DelegatingConnectionFactory.createConnection(String sourceName)
          Create a RepositoryConnection using the given RepositorySource name.
 

Uses of RepositoryConnection in org.modeshape.repository
 

Methods in org.modeshape.repository that return RepositoryConnection
 RepositoryConnection RepositoryLibrary.createConnection(String sourceName)
          Create a RepositoryConnection using the given RepositorySource name.
 



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