Package org.apache.uima.impl
Class CompositeResourceFactory_impl
java.lang.Object
org.apache.uima.impl.CompositeResourceFactory_impl
- All Implemented Interfaces:
CompositeResourceFactory
,ResourceFactory
A registry containing (ResourceSpecifier Class,
ResourceFactory
) pairs. Also implements
the ResourceFactory
interface, and produces resources by delegating to the most
recently registered ResourceFactory
instance that can handle the class of the given
specifier object.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionproduceResource
(Class<? extends Resource> aResourceClass, ResourceSpecifier aSpecifier, Map<String, Object> aAdditionalParams) Produces an appropriateResource
instance from aResourceSpecifier
.void
registerFactory
(Class aResourceSpecifierInterface, ResourceFactory aFactory) Registers a ResourceFactory with this composite factory.
-
Constructor Details
-
CompositeResourceFactory_impl
public CompositeResourceFactory_impl()
-
-
Method Details
-
produceResource
public Resource produceResource(Class<? extends Resource> aResourceClass, ResourceSpecifier aSpecifier, Map<String, Object> aAdditionalParams) throws ResourceInitializationExceptionDescription copied from interface:ResourceFactory
Produces an appropriateResource
instance from aResourceSpecifier
. This version ofproduceResource
takes a Map containing additional parameters to be passed to theResource.initialize(ResourceSpecifier,Map)
method.- Specified by:
produceResource
in interfaceResourceFactory
- 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 aResource
.aAdditionalParams
- a Map containing additional parameters to pass to theResource.initialize(ResourceSpecifier,Map)
method. May benull
if there are no parameters.- Returns:
- a
Resource
instance. Returnsnull
if this factory does not know how to create a Resource from theResourceSpecifier
provided. - Throws:
ResourceInitializationException
- if a failure occurred during production of the resource- See Also:
-
registerFactory
Description copied from interface:CompositeResourceFactory
Registers a ResourceFactory with this composite factory.- Specified by:
registerFactory
in interfaceCompositeResourceFactory
- Parameters:
aResourceSpecifierInterface
- the subinterface ofResourceSpecifier
that the factory can handleaFactory
- the factory used to create resources from resource specifiers of the given type- See Also:
-