Package org.verapdf.processor
Interface Processor
-
- All Superinterfaces:
AutoCloseable,Closeable,Component
- All Known Subinterfaces:
BatchProcessor,ItemProcessor
- All Known Implementing Classes:
AbstractBatchProcessor,BatchFileProcessor
public interface Processor extends Component
Base interface for veraPDF Processors, mandates some basic properties.- Version:
- 0.1 Created 2 Nov 2016:11:22:06
- Author:
- Carl Wilson carlwilson AT github
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProcessorConfiggetConfig()Collection<ReleaseDetails>getDependencies()-
Methods inherited from interface org.verapdf.component.Component
getDetails
-
-
-
-
Method Detail
-
getConfig
ProcessorConfig getConfig()
- Returns:
- the
ProcessorConfigthat holds the details for the configuration of thisProcessor
-
getDependencies
Collection<ReleaseDetails> getDependencies()
- Returns:
- a
CollectionofReleaseDetailsfor theProcessor's dependencies, for auditing.
-
-