Uses of Interface
org.modeshape.common.component.ClassLoaderFactory

Packages that use ClassLoaderFactory
org.modeshape.common.component A simple framework for loading and managing Component objects that may be configured and used reflectively. 
org.modeshape.graph The ModeShape Graph API defines the types that allow you to work with content organized as a graph. 
org.modeshape.graph.mimetype This package defines an interface for the MIME type detector, which represents a component that is able to determine the MIME type for a stream of data and/or the name of the file containing the data. 
org.modeshape.graph.sequencer A sequencer in ModeShape is a component that is able to process information (usually the content of a file, or a property value on a node) and recreate that information as a graph of structured content. 
org.modeshape.graph.text This package defines an interface for components that extract text from content. 
org.modeshape.jcr The ModeShape implementation of the JCR API. 
org.modeshape.maven The classes that make up the Maven classloader system. 
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.repository.sequencer The classes that make up the sequencing service and its configuration. 
 

Uses of ClassLoaderFactory in org.modeshape.common.component
 

Classes in org.modeshape.common.component that implement ClassLoaderFactory
 class StandardClassLoaderFactory
          A ClassLoaderFactory implementation that loads classes using the thread's context class loader or (optionally) a supplied class loader.
 

Fields in org.modeshape.common.component declared as ClassLoaderFactory
static ClassLoaderFactory ComponentLibrary.DEFAULT
          Class loader factory instance that always returns the current thread's context class loader (if not null) or component library's class loader.
 

Methods in org.modeshape.common.component that return ClassLoaderFactory
 ClassLoaderFactory ComponentLibrary.getClassLoaderFactory()
          Get the class loader factory that should be used to load the component classes.
 

Methods in org.modeshape.common.component with parameters of type ClassLoaderFactory
 void ComponentLibrary.setClassLoaderFactory(ClassLoaderFactory classLoaderFactory)
          Set the Maven Repository that should be used to load the component classes.
 

Uses of ClassLoaderFactory in org.modeshape.graph
 

Classes in org.modeshape.graph that implement ClassLoaderFactory
 class ExecutionContext
          An ExecutionContext is a representation of the environment or context in which a component or operation is operating.
 

Methods in org.modeshape.graph that return ClassLoaderFactory
protected  ClassLoaderFactory ExecutionContext.getClassLoaderFactory()
          Get the class loader factory used by this context.
 

Methods in org.modeshape.graph with parameters of type ClassLoaderFactory
 ExecutionContext ExecutionContext.with(ClassLoaderFactory classLoaderFactory)
          Create a new execution context that mirrors this context but that uses the supplied class loader factory.
 

Constructors in org.modeshape.graph with parameters of type ClassLoaderFactory
ExecutionContext(SecurityContext securityContext, NamespaceRegistry namespaceRegistry, ValueFactories valueFactories, PropertyFactory propertyFactory, MimeTypeDetector mimeTypeDetector, TextExtractor textExtractor, ClassLoaderFactory classLoaderFactory, Map<String,String> data, String processId)
          Create an instance of the execution context by supplying all parameters.
 

Uses of ClassLoaderFactory in org.modeshape.graph.mimetype
 

Fields in org.modeshape.graph.mimetype declared as ClassLoaderFactory
protected static ClassLoaderFactory MimeTypeDetectors.DEFAULT_CLASSLOADER_FACTORY
          Class loader factory instance that always returns the current thread's context class loader, or if null the class loader for this class.
 

Methods in org.modeshape.graph.mimetype that return ClassLoaderFactory
 ClassLoaderFactory MimeTypeDetectors.getClassLoaderFactory()
          Gets the class loader factory that should be used to load MIME-type detectors.
 

Methods in org.modeshape.graph.mimetype with parameters of type ClassLoaderFactory
 void MimeTypeDetectors.setClassLoaderFactory(ClassLoaderFactory classLoaderFactory)
          Sets the Maven Repository that should be used to load the MIME-type detectors.
 

Uses of ClassLoaderFactory in org.modeshape.graph.sequencer
 

Classes in org.modeshape.graph.sequencer that implement ClassLoaderFactory
 class StreamSequencerContext
          A special ExecutionContext that is used for sequencing streams.
 

Methods in org.modeshape.graph.sequencer with parameters of type ClassLoaderFactory
 StreamSequencerContext StreamSequencerContext.with(ClassLoaderFactory classLoaderFactory)
          Create a new execution context that mirrors this context but that uses the supplied class loader factory.
 

Uses of ClassLoaderFactory in org.modeshape.graph.text
 

Classes in org.modeshape.graph.text that implement ClassLoaderFactory
 class TextExtractorContext
          A context for extracting the content.
 

Fields in org.modeshape.graph.text declared as ClassLoaderFactory
protected static ClassLoaderFactory TextExtractors.DEFAULT_CLASSLOADER_FACTORY
          Class loader factory instance that always returns the current thread's context class loader, or if null the class loader for this class.
 

Methods in org.modeshape.graph.text that return ClassLoaderFactory
 ClassLoaderFactory TextExtractors.getClassLoaderFactory()
          Gets the class loader factory that should be used to load text extractors.
 

Methods in org.modeshape.graph.text with parameters of type ClassLoaderFactory
 void TextExtractors.setClassLoaderFactory(ClassLoaderFactory classLoaderFactory)
          Sets the Maven Repository that should be used to load the MIME-type detectors.
 TextExtractorContext TextExtractorContext.with(ClassLoaderFactory classLoaderFactory)
          Create a new execution context that mirrors this context but that uses the supplied class loader factory.
 

Uses of ClassLoaderFactory in org.modeshape.jcr
 

Methods in org.modeshape.jcr with parameters of type ClassLoaderFactory
 JcrConfiguration JcrConfiguration.withClassLoaderFactory(ClassLoaderFactory classLoaderFactory)
          Specify the ClassLoaderFactory that should be used to load the classes for the various components.
 

Uses of ClassLoaderFactory in org.modeshape.maven
 

Classes in org.modeshape.maven that implement ClassLoaderFactory
 class MavenRepository
          A Maven 2 repository that can be used to store and access artifacts like JARs and source archives within a running application.
 

Uses of ClassLoaderFactory in org.modeshape.repository
 

Methods in org.modeshape.repository that return ClassLoaderFactory
 ClassLoaderFactory ModeShapeConfiguration.ConfigurationDefinition.getClassLoaderFactory()
           
 

Methods in org.modeshape.repository with parameters of type ClassLoaderFactory
 ModeShapeConfiguration.ConfigurationDefinition ModeShapeConfiguration.ConfigurationDefinition.with(ClassLoaderFactory classLoaderFactory)
          Return a copy of this configuration that uses the supplied class loader factory instead of this object's class loader factory.
 ModeShapeConfiguration ModeShapeConfiguration.withClassLoaderFactory(ClassLoaderFactory classLoaderFactory)
          Specify the ClassLoaderFactory that should be used to load the classes for the various components.
 

Constructors in org.modeshape.repository with parameters of type ClassLoaderFactory
ModeShapeConfiguration.ConfigurationDefinition(String configurationName, RepositorySource source, String workspace, Path path, ExecutionContext context, ClassLoaderFactory classLoaderFactory)
           
 

Uses of ClassLoaderFactory in org.modeshape.repository.sequencer
 

Fields in org.modeshape.repository.sequencer declared as ClassLoaderFactory
protected static ClassLoaderFactory SequencingService.DEFAULT_CLASSLOADER_FACTORY
          Class loader factory instance that always returns the current thread's context class loader (if not null) or component library's class loader.
 



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