Interface VariableExporter
-
- All Known Implementing Classes:
VariableExporterImpl
public interface VariableExporter
Service to export Bamboo variables to YAML config files.- Since:
- 5.11
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull List<com.atlassian.bamboo.specs.api.builders.Variable>
toSpecsEntities(@NotNull ImmutablePlan plan, @NotNull List<VariableDefinition> variables)
ConvertVariableDefinition
to a property object that can be used for export.@NotNull com.atlassian.bamboo.specs.api.builders.Variable
toSpecsEntity(@NotNull VariableDefinition variable)
ConvertVariableDefinition
to a property object that can be used for export.
-
-
-
Method Detail
-
toSpecsEntity
@NotNull @NotNull com.atlassian.bamboo.specs.api.builders.Variable toSpecsEntity(@NotNull @NotNull VariableDefinition variable)
ConvertVariableDefinition
to a property object that can be used for export.
-
toSpecsEntities
@NotNull @NotNull List<com.atlassian.bamboo.specs.api.builders.Variable> toSpecsEntities(@NotNull @NotNull ImmutablePlan plan, @NotNull @NotNull List<VariableDefinition> variables)
ConvertVariableDefinition
to a property object that can be used for export.- Parameters:
plan
- plan that owns the variablesvariables
- list of variables
-
-