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

Packages that use RepositoryContext
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.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 RepositoryContext in org.modeshape.connector.infinispan
 

Methods in org.modeshape.connector.infinispan that return RepositoryContext
 RepositoryContext BaseInfinispanSource.getRepositoryContext()
           
 

Methods in org.modeshape.connector.infinispan with parameters of type RepositoryContext
 void BaseInfinispanSource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

Uses of RepositoryContext in org.modeshape.connector.jbosscache
 

Methods in org.modeshape.connector.jbosscache that return RepositoryContext
 RepositoryContext JBossCacheSource.getRepositoryContext()
           
 

Methods in org.modeshape.connector.jbosscache with parameters of type RepositoryContext
 void JBossCacheSource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

Uses of RepositoryContext in org.modeshape.connector.jcr
 

Methods in org.modeshape.connector.jcr that return RepositoryContext
protected  RepositoryContext JcrRepositorySource.getRepositoryContext()
           
 

Methods in org.modeshape.connector.jcr with parameters of type RepositoryContext
 void JcrRepositorySource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

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

Methods in org.modeshape.connector.store.jpa that return RepositoryContext
 RepositoryContext JpaSource.getRepositoryContext()
          Returns the current repository context for the source, as set with a call to JpaSource.initialize(RepositoryContext).
 

Methods in org.modeshape.connector.store.jpa with parameters of type RepositoryContext
 void JpaSource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

Uses of RepositoryContext in org.modeshape.graph.connector
 

Methods in org.modeshape.graph.connector with parameters of type RepositoryContext
 void RepositorySource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

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

Fields in org.modeshape.graph.connector.base declared as RepositoryContext
protected  RepositoryContext AbstractRepositorySource.repositoryContext
           
 

Methods in org.modeshape.graph.connector.base that return RepositoryContext
 RepositoryContext BaseRepositorySource.getRepositoryContext()
          Returns the repository context for the repository source
 RepositoryContext AbstractRepositorySource.getRepositoryContext()
          Returns the repository context for the repository source
 

Methods in org.modeshape.graph.connector.base with parameters of type RepositoryContext
 void AbstractRepositorySource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

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

Methods in org.modeshape.graph.connector.federation with parameters of type RepositoryContext
 void FederatedRepositorySource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
protected  org.modeshape.graph.connector.federation.FederatedRepository FederatedRepositorySource.loadRepository(String name, RepositoryContext repositoryContext)
          Utility to load the current configuration for this source from the configuration repository.
 

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

Classes in org.modeshape.graph.connector.inmemory that implement RepositoryContext
protected  class InMemoryRepositorySource.DefaultRepositoryContext
           
 

Methods in org.modeshape.graph.connector.inmemory that return RepositoryContext
 RepositoryContext InMemoryRepositorySource.getRepositoryContext()
           
 

Methods in org.modeshape.graph.connector.inmemory with parameters of type RepositoryContext
 void InMemoryRepositorySource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

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

Methods in org.modeshape.graph.connector.map that return RepositoryContext
 RepositoryContext MapRepositorySource.getRepositoryContext()
          Returns the repository context for the repository source
 

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

Fields in org.modeshape.graph.connector.path declared as RepositoryContext
protected  RepositoryContext AbstractPathRepositorySource.repositoryContext
           
 

Methods in org.modeshape.graph.connector.path that return RepositoryContext
 RepositoryContext PathRepositorySource.getRepositoryContext()
          Returns the repository context for the repository source
 RepositoryContext AbstractPathRepositorySource.getRepositoryContext()
          Returns the repository context for the repository source
 

Methods in org.modeshape.graph.connector.path with parameters of type RepositoryContext
 void AbstractPathRepositorySource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

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

Classes in org.modeshape.graph.connector.xmlfile that implement RepositoryContext
protected  class XmlFileRepositorySource.DefaultRepositoryContext
           
 

Methods in org.modeshape.graph.connector.xmlfile that return RepositoryContext
 RepositoryContext XmlFileRepositorySource.getRepositoryContext()
           
 

Methods in org.modeshape.graph.connector.xmlfile with parameters of type RepositoryContext
 void XmlFileRepositorySource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

Uses of RepositoryContext in org.modeshape.graph.search
 

Methods in org.modeshape.graph.search with parameters of type RepositoryContext
 void SearchableRepositorySource.initialize(RepositoryContext context)
          Initialize this source to use the supplied RepositoryContext, from which this source can obtain the configuration defining this source, connections to other sources, and the execution context.
 

Uses of RepositoryContext in org.modeshape.jcr
 

Classes in org.modeshape.jcr that implement RepositoryContext
protected  class JcrRepository.FederatedRepositoryContext
           
 

Uses of RepositoryContext in org.modeshape.repository
 

Classes in org.modeshape.repository that implement RepositoryContext
 class SimpleRepositoryContext
          A simple, immutable RepositoryContext implementation that uses the references supplied as parameters to the constructor.
 



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