Interface VariableBaselineItem
-
- All Superinterfaces:
BambooIdProvider
,BambooObject
,Serializable
,VariableDefinitionIdentifier
,VariableSubstitutionContext
- All Known Implementing Classes:
VariableBaselineItemImpl
public interface VariableBaselineItem extends VariableSubstitutionContext, BambooObject
In order to ensure that resumed job execution happens in the same variable context as its first run, all the variable assignments need to be saved for future use.VariableBaselineItem
represents single variable assignment. See also:VariableContextBaseline
-
-
Field Summary
-
Fields inherited from interface com.atlassian.bamboo.variable.VariableDefinitionIdentifier
ORDERING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull VariableContextBaseline
getOwningBaseline()
void
setOwningBaseline(@NotNull VariableContextBaseline owningBaseline)
-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
Methods inherited from interface com.atlassian.bamboo.variable.VariableSubstitutionContext
getKey, getValue, getVariableType, setKey, setValue, setVariableType
-
-
-
-
Method Detail
-
getOwningBaseline
@NotNull @NotNull VariableContextBaseline getOwningBaseline()
- Since:
- 5.0
-
setOwningBaseline
void setOwningBaseline(@NotNull @NotNull VariableContextBaseline owningBaseline)
- Since:
- 5.0
-
-