-
- All Implemented Interfaces:
-
com.netflix.spinnaker.kork.plugins.api.internal.SpinnakerExtensionPoint,org.pf4j.ExtensionPoint
@Beta() public interface ExecutionPreprocessor implements SpinnakerExtensionPointExecutionPreprocessor is a hook point that can modify an Execution upon initial receipt of the configuration.
A common use case is to inspect and update a pipeline with configured context, such an application name.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description enumExecutionPreprocessor.Type
-
Method Summary
Modifier and Type Method Description abstract booleansupports(Map<String, Object> execution, ExecutionPreprocessor.Type type)Returns whether or not the preprocess can handle the inbound execution. abstract Map<String, Object>process(Map<String, Object> execution)Allows modification of an execution configuration. -
-
Method Detail
-
supports
abstract boolean supports(Map<String, Object> execution, ExecutionPreprocessor.Type type)
Returns whether or not the preprocess can handle the inbound execution.
-
-
-
-