Interface MutableDeploymentResult
-
- All Superinterfaces:
BambooCustomDataAware,BambooIdProvider,BambooObject,InternalDeploymentResult
- All Known Implementing Classes:
MutableDeploymentResultImpl
public interface MutableDeploymentResult extends BambooObject, InternalDeploymentResult, BambooCustomDataAware
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,String>getCustomData()StringgetTriggerReasonKey()longgetVersionId()voidsetAgentId(Long agentId)voidsetAgentType(@Nullable AgentType agentType)voidsetDeploymentState(@NotNull BuildState deploymentState)voidsetDeploymentVersionName(@NotNull String deploymentVersionName)voidsetExecutedDate(@Nullable Date date)voidsetFinishedDate(@Nullable Date date)voidsetLifeCycleState(@NotNull LifeCycleState lifeCycleState)voidsetQueuedDate(@Nullable Date date)voidsetStartedDate(@Nullable Date date)voidsetTriggerReasonKey(String triggerReasonKey)-
Methods inherited from interface com.atlassian.bamboo.core.BambooCustomDataAware
updateCustomDataEntry
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
Methods inherited from interface com.atlassian.bamboo.deployments.results.InternalDeploymentResult
getAgentId, getAgentType, getDeploymentState, getDeploymentVersionName, getEnvironmentId, getExecutedDate, getFinishedDate, getId, getLifeCycleState, getQueuedDate, getStartedDate, getTriggerReason
-
-
-
-
Method Detail
-
setDeploymentVersionName
void setDeploymentVersionName(@NotNull @NotNull String deploymentVersionName)
-
setDeploymentState
void setDeploymentState(@NotNull @NotNull BuildState deploymentState)
-
setLifeCycleState
void setLifeCycleState(@NotNull @NotNull LifeCycleState lifeCycleState)
-
setStartedDate
void setStartedDate(@Nullable @Nullable Date date)
-
setQueuedDate
void setQueuedDate(@Nullable @Nullable Date date)
-
setExecutedDate
void setExecutedDate(@Nullable @Nullable Date date)
-
setFinishedDate
void setFinishedDate(@Nullable @Nullable Date date)
-
setAgentId
void setAgentId(Long agentId)
-
setAgentType
void setAgentType(@Nullable @Nullable AgentType agentType)
-
getVersionId
long getVersionId()
-
getTriggerReasonKey
String getTriggerReasonKey()
-
setTriggerReasonKey
void setTriggerReasonKey(String triggerReasonKey)
-
-