org.apache.uima
Interface ResourceFactory
- All Known Subinterfaces: 
- CompositeResourceFactory
- All Known Implementing Classes: 
- SimpleResourceFactory
- public interface ResourceFactory 
A ResourceFactory is used to acquire instances of Resources.
 
 The method produceResource(Class,ResourceSpecifier,Map) is used to produce an instance
 of a Resource.  The input to this method
 is a ResourceSpecifier, which contains all of the information that
 this factory can use to acquire a reference to the resource.
 
 Most applications will not need to interact with this interface.
 Applications will generally create resources using the static methods on
 the UIMAFramework class.
 
 Note that multiple threads may attempt to manufacture resources
 simulatenously, so implementations of this interface MUST be threadsafe.
 
 Developers needing to provide their own ResourceFactory may
 wish to consider using the provided 
 SimpleResourceFactory implementation.
 
produceResource
Resource produceResource(Class<? extends Resource> aResourceClass,
                         ResourceSpecifier aSpecifier,
                         Map<String,Object> aAdditionalParams)
                         throws ResourceInitializationException
- Produces an appropriate Resourceinstance from aResourceSpecifier.
 This version ofproduceResourcetakes a Map containing additional parameters to
 be passed to theResource.initialize(ResourceSpecifier,Map)method.
 
- 
- Parameters:
- aResourceClass- the class of resource to be produced (NOTE: this is intended to be a standard UIMA
          interface name such as "TextAnalysisEngine" or "ASB")
- aSpecifier- an object that specifies how to acquire an instance of a- Resource.
- aAdditionalParams- a Map containing additional parameters to pass to the- Resource.initialize(ResourceSpecifier,Map)method. May be- nullif there are no parameters.
- Returns:
- a Resourceinstance. Returnsnullif this factory does
         not know how to create a Resource from theResourceSpecifierprovided.
- Throws:
- ResourceInitializationException- if a failure occurred during production of the resource
 
Copyright © 2010 The Apache Software Foundation. All Rights Reserved.