public interface OutputHandler<T>
Modifier and Type | Method and Description |
---|---|
void |
publishOutput(List<T> strategyResults)
This method is called for publishing your output the way you want to produce We have provided
many APIs like TemplateHelper and EmailHelper.
|
void |
setOutputConfiguration(OutputConfiguration outputConfiguration)
This method is automatically called by Output Executor during the plugin run You can setup
local variables from buildRunInfo object provided to you.
|
void setOutputConfiguration(OutputConfiguration outputConfiguration)
outputConfiguration
- The configuration values of the general output-handling properties
like output directory etc.void publishOutput(List<T> strategyResults) throws BuildComparatorException, BuildExecutionException
strategyResults
- This is a list of selected comparison-strategy results, which you had
configured in the propertiesBuildComparatorException
- Throws BuildComparatorException with proper message if any
error/exception has occured during the executionBuildExecutionException
- Throws BuildExecutionException with proper message if any
error/exception has occured during the executionCopyright © 2016–2019. All rights reserved.