Package org.apache.any23.plugin
Interface ExtractorPlugin<T extends Extractor<?>>
-
@Deprecated public interface ExtractorPlugin<T extends Extractor<?>>
Deprecated.ExtractorFactory now supports META-INF/services discovery via theServiceLoader
, deprecating this class. Instead implement a subinterface ofExtractor
and ensure that your plugin is in compliance with the META-INF/services mechanism.This interface defines an Any23 extractor plugin that can be detected and registered from the library classpath.- Author:
- Michele Mostarda (mostarda@fbk.eu)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ExtractorFactory<T>
getExtractorFactory()
Deprecated.
-
-
-
Method Detail
-
getExtractorFactory
ExtractorFactory<T> getExtractorFactory()
Deprecated.- Returns:
- the
ExtractorFactory
for the plugin.
-
-