|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ImmutablePlan
Represents a Chain
that is immutable. Since 3.4, all new uses of Chains should prefer this interface
to improve cacheability.
Field Summary | |
---|---|
static int |
MAX_NUMBER_LOG_ENTRIES
|
static int |
MAX_PREVIOUS_BUILD_FOR_AVE
|
static java.lang.String |
STATUS_CURRENTLY_BUILDING
|
static java.lang.String |
STATUS_FAIL
|
static java.lang.String |
STATUS_NO_BUILDS
|
static java.lang.String |
STATUS_NOT_RUN
|
static java.lang.String |
STATUS_SUCCESS
|
Method Summary | |
---|---|
long |
getAverageBuildDuration()
Returns an average duration of the recent builds |
BuildDefinition |
getBuildDefinition()
Returns the BuildDefinition that backs this Plan |
BuildDefinitionForBuild |
getBuildDefinitionXml()
|
BuildLogger |
getBuildLogger()
Returns the helper object to deal with logging |
java.lang.String |
getCurrentStatus()
Retuns a string key as to what the status is. |
java.util.List<VariableDefinition> |
getEffectiveVariables()
Return effective list of VariableDefinition s bind to this Plan. |
int |
getFirstBuildNumber()
What the number of the first build we have? It may not be 1 as some may have been removed! |
java.lang.String |
getKey()
Obtain the plan's unique key (uppercase alphanumeric). |
java.util.List<java.lang.String> |
getLabelNames()
Returns all the names of related labels with a namesapce of :label |
int |
getLastBuildNumber()
What was the number of the latest build (may be being built) |
ResultsSummary |
getLatestResultsSummary()
Get the latest finished result |
ImmutablePlan |
getMaster()
Return the master plan if one exists. |
int |
getNextBuildNumber()
The next build number represents the number of the next build result that's to be executed |
Project |
getProject()
Returns the parent Project |
java.lang.String |
getType()
Deprecated. Use PlanIdentifier.getPlanType() instead. Since v4.0. |
java.util.List<VariableDefinition> |
getVariables()
Return list of VariableDefinition s bind to this Plan |
boolean |
hasMaster()
|
boolean |
isActive()
Deprecated. since 4.0 use ChainExecutionManager.isActive(PlanKey) or PlanExecutionManager#isActive(PlanKey) |
boolean |
isBusy()
Deprecated. since 4.0 use PlanExecutionManager.isBusy(PlanKey) or ChainExecutionManager#isBusy(PlanKey) |
boolean |
isExecuting()
Is the build currently being executed? |
boolean |
isMarkedForDeletion()
Is the plan set to be deleted in the future |
Methods inherited from interface com.atlassian.bamboo.plan.PlanIdentifier |
---|
getBuildKey, getBuildName, getId, getMasterId, getName, getPlanKey, getPlanType, isSuspendedFromBuilding |
Methods inherited from interface com.atlassian.bamboo.utils.DescriptionProvider |
---|
getDescription |
Field Detail |
---|
static final int MAX_NUMBER_LOG_ENTRIES
static final int MAX_PREVIOUS_BUILD_FOR_AVE
static final java.lang.String STATUS_FAIL
static final java.lang.String STATUS_SUCCESS
static final java.lang.String STATUS_CURRENTLY_BUILDING
static final java.lang.String STATUS_NO_BUILDS
static final java.lang.String STATUS_NOT_RUN
Method Detail |
---|
@NotNull @Deprecated java.lang.String getType()
PlanIdentifier.getPlanType()
instead. Since v4.0.
PlanType
and used in Freemarker.
@NotNull java.lang.String getKey()
PlanIdentifier.getPlanKey()
@NotNull java.lang.String getCurrentStatus()
boolean isExecuting()
@NotNull BuildLogger getBuildLogger()
BuildLogger
. @NotNull@Deprecated boolean isActive()
ChainExecutionManager.isActive(PlanKey)
or PlanExecutionManager#isActive(PlanKey)
@Deprecated boolean isBusy()
PlanExecutionManager.isBusy(PlanKey)
or ChainExecutionManager#isBusy(PlanKey)
Plan
"busy". Busy is defined by the plan having a lock held on it. This is done during change
detection, dependency listner and the like
int getFirstBuildNumber()
int getLastBuildNumber()
int getNextBuildNumber()
long getAverageBuildDuration()
boolean isMarkedForDeletion()
@Nullable BuildDefinitionForBuild getBuildDefinitionXml()
@NotNull BuildDefinition getBuildDefinition()
BuildDefinition
that backs this Plan
BuildDefinition
object.@NotNull Project getProject()
Project
getProject
in interface PlanIdentifier
Project
. Never null@NotNull java.util.List<java.lang.String> getLabelNames()
@Nullable ResultsSummary getLatestResultsSummary()
@NotNull java.util.List<VariableDefinition> getVariables()
VariableDefinition
s bind to this Plan
VariableDefinition
@NotNull java.util.List<VariableDefinition> getEffectiveVariables()
VariableDefinition
s bind to this Plan.
For master Plans this will return the same result as getVariables()
.
Non-master plans will produce the sum of:
- all master's variables which keys do not appear in result of getVariables()
- result of getVariables()
VariableDefinition
@Nullable ImmutablePlan getMaster()
Plan
if one exists.boolean hasMaster()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |