Package com.atlassian.bamboo.plan
Interface ExecutionRequestResult
-
- All Known Subinterfaces:
BuildRequestResult,ChainExecutionRequestResult,ChainStateCreationRequestResult,EnvironmentTriggeringResult
- All Known Implementing Classes:
BuildRequestResultImpl,ChainStateCreationRequestResultImpl,EnvironmentTriggeringResultImpl
@PublicApi public interface ExecutionRequestResultResult forPlanExecutionManagerrequests
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable LonggetDeploymentResultId()The id of the result of the executing Environment@NotNull ErrorCollectiongetErrors()Any errors that occurred during the execution request@Nullable PlanResultKeygetPlanResultKey()ThePlanResultKeyof the executingPlan
-
-
-
Method Detail
-
getErrors
@NotNull @NotNull ErrorCollection getErrors()
Any errors that occurred during the execution request- Returns:
-
getPlanResultKey
@Nullable @Nullable PlanResultKey getPlanResultKey()
ThePlanResultKeyof the executingPlan- Returns:
- planResultKey or null if request failed
- Throws:
UnsupportedOperationException- if execution request came from Environment
-
getDeploymentResultId
@Nullable @Nullable Long getDeploymentResultId()
The id of the result of the executing Environment- Returns:
- if or null if request failed
- Throws:
UnsupportedOperationException- if execution request came fromPlan
-
-