Interface DeploymentTaskType
-
- All Superinterfaces:
InternalTaskType
@PublicApi public interface DeploymentTaskType extends InternalTaskType
An Executable Task. To be implemented by task plugins. TaskTypes are only responsible for executing the task. SeeTaskConfigurator
for how to generate a UI to configure this particular task. Tasks implementing this interface can be used in Deployment Jobs.- Since:
- 5.0
- See Also:
TaskConfigurator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull TaskResult
execute(@NotNull DeploymentTaskContext taskContext)
Execute the task
-
-
-
Method Detail
-
execute
@NotNull @NotNull TaskResult execute(@NotNull @NotNull DeploymentTaskContext taskContext) throws TaskException
Execute the task- Parameters:
taskContext
-- Returns:
- a
TaskResult
representing the status of the task execution - Throws:
TaskException
-
-