Interface IExportConfigurationPreprocessor
public interface IExportConfigurationPreprocessor
The preprocessor of export configurations.
Preprocessors are components (contributable via the "com.polarion.alm.tracker.exportPreprocessors" extension point),
that can modify the export configuration before it is passed to the exporter.
For example, to add a watermark to the export template.
- Since:
- 3.17.1
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
-
Method Summary
Modifier and TypeMethodDescriptionvoid
preprocess
(IExportConfigurationPreprocessor.IExportContext context, IExportConfiguration configuration) Preprocesses (modifies) the export configuration before it is passed to the exporter.
-
Method Details
-
preprocess
void preprocess(@NotNull IExportConfigurationPreprocessor.IExportContext context, @NotNull IExportConfiguration configuration) Preprocesses (modifies) the export configuration before it is passed to the exporter.- Parameters:
context
- The context of the export.configuration
- The export configuration used that can be modified.- See Also:
-