public class MavenTaskExporter extends Object implements TaskDefinitionExporter
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_TEST_RESULTS_FILE_PATTERN |
Constructor and Description |
---|
MavenTaskExporter(UIConfigSupport uiConfigSupport) |
Modifier and Type | Method and Description |
---|---|
@Nullable com.atlassian.bamboo.specs.builders.task.MavenTask |
fromYaml(@NotNull Node node,
@NotNull TaskValidationContext context)
Parse YAML node to Task Specs builder.
|
@NotNull com.atlassian.bamboo.specs.builders.task.MavenTask |
toSpecsEntity(@NotNull TaskDefinition taskDefinition)
Create Bamboo Specs object representing this task.
|
@NotNull Map<String,String> |
toTaskConfiguration(@NotNull TaskContainer taskContainer,
@NotNull com.atlassian.bamboo.specs.api.model.task.TaskProperties taskProperties)
Converts properties to Bamboo task configuration.
|
<T extends com.atlassian.bamboo.specs.api.model.task.TaskProperties> |
toYaml(T taskProperties)
Convert task definition to YAML node.
|
@NotNull List<com.atlassian.bamboo.specs.api.validators.common.ValidationProblem> |
validate(@NotNull TaskValidationContext taskValidationContext,
@NotNull com.atlassian.bamboo.specs.api.model.task.TaskProperties taskProperties)
Validates task properties in context of enclosing plan or deployment properties.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
toSpecsEntity, toTaskConfiguration, toTaskConfiguration
public static final String DEFAULT_TEST_RESULTS_FILE_PATTERN
@Inject public MavenTaskExporter(UIConfigSupport uiConfigSupport)
@NotNull public @NotNull Map<String,String> toTaskConfiguration(@NotNull @NotNull TaskContainer taskContainer, @NotNull @NotNull com.atlassian.bamboo.specs.api.model.task.TaskProperties taskProperties)
TaskDefinitionExporter
toTaskConfiguration
in interface TaskDefinitionExporter
taskContainer
- current task container (a job or an environment for instance)taskProperties
- the current task@NotNull public @NotNull com.atlassian.bamboo.specs.builders.task.MavenTask toSpecsEntity(@NotNull @NotNull TaskDefinition taskDefinition)
TaskDefinitionExporter
toSpecsEntity
in interface TaskDefinitionExporter
@NotNull public @NotNull List<com.atlassian.bamboo.specs.api.validators.common.ValidationProblem> validate(@NotNull @NotNull TaskValidationContext taskValidationContext, @NotNull @NotNull com.atlassian.bamboo.specs.api.model.task.TaskProperties taskProperties)
TaskDefinitionExporter
Should check RSS permissions if necessary.
validate
in interface TaskDefinitionExporter
@Nullable public <T extends com.atlassian.bamboo.specs.api.model.task.TaskProperties> @Nullable Node toYaml(@NotNull T taskProperties)
TaskDefinitionExporter
toYaml
in interface TaskDefinitionExporter
@Nullable public @Nullable com.atlassian.bamboo.specs.builders.task.MavenTask fromYaml(@NotNull @NotNull Node node, @NotNull @NotNull TaskValidationContext context) throws YamlSpecsValidationException
TaskDefinitionExporter
fromYaml
in interface TaskDefinitionExporter
node
- YAML node from user input. In general case it's same node generated by TaskDefinitionExporter.toYaml(TaskProperties)
method, but in some cases it might contain additional general task elements, like conditions. These
elements should be ignored by method implementation and will be handled by Bamboo code. In such case
MapNode handler should be implemented even if TaskDefinitionExporter.toYaml(TaskProperties)
produces StringNode.context
- task validation contextYamlSpecsValidationException
Copyright © 2022 Atlassian Software Systems Pty Ltd. All rights reserved.