Interface Processor
public interface Processor
A processor can be used to process the binaries or sources before they get archived.
-
Method Summary
Modifier and TypeMethodDescriptiondefault StringgetName()Unique name identifying the processorvoidprocessBinaries(ProcessorContext ctx, List<Source> sources) Process the binariesvoidprocessSources(ProcessorContext ctx, List<Source> sources) Process the sources
-
Method Details
-
processSources
Process the sources- Parameters:
ctx- The contextsources- The list of sources
-
processBinaries
Process the binaries- Parameters:
ctx- The contextsources- The list of sources
-
getName
Unique name identifying the processor- Returns:
- The name
-