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 String
getName()
Unique name identifying the processorvoid
processBinaries
(ProcessorContext ctx, List<Source> sources) Process the binariesvoid
processSources
(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
-