Class RestResultStatus
- java.lang.Object
-
- com.atlassian.bamboo.plugins.rest.model.build.status.RestResultStatus
-
- Direct Known Subclasses:
RestChainResultStatus
,RestJobResultStatus
public class RestResultStatus extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Boolean
finished
static String
KEY
protected String
planResultKey
protected String
prettyQueuedTime
protected RestProgress
progress
-
Constructor Summary
Constructors Constructor Description RestResultStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
getFinished()
String
getPlanResultKey()
String
getPrettyQueuedTime()
RestProgress
getProgress()
void
setFinished(Boolean finished)
void
setPlanResultKey(String planResultKey)
void
setPrettyQueuedTime(String prettyQueuedTime)
void
setProgress(RestProgress progress)
-
-
-
Field Detail
-
KEY
public static final String KEY
- See Also:
- Constant Field Values
-
planResultKey
protected String planResultKey
-
finished
protected Boolean finished
-
prettyQueuedTime
protected String prettyQueuedTime
-
progress
protected RestProgress progress
-
-
Method Detail
-
getPlanResultKey
public String getPlanResultKey()
-
setPlanResultKey
public void setPlanResultKey(String planResultKey)
-
getFinished
public Boolean getFinished()
-
setFinished
public void setFinished(Boolean finished)
-
getPrettyQueuedTime
public String getPrettyQueuedTime()
-
setPrettyQueuedTime
public void setPrettyQueuedTime(String prettyQueuedTime)
-
getProgress
public RestProgress getProgress()
-
setProgress
public void setProgress(RestProgress progress)
-
-