Package ubic.gemma.core.job.progress
Class ProgressData
- java.lang.Object
-
- ubic.gemma.core.job.progress.ProgressData
-
- All Implemented Interfaces:
Serializable
public class ProgressData extends Object implements Serializable
- Author:
- klc
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProgressData()ProgressData(String taskId, int per, String description)ProgressData(String taskId, int per, String description, boolean finished)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()StringgetForwardingURL()intgetPercent()StringgetTaskId()booleanisDone()booleanisFailed()voidsetDescription(String description)voidsetDone(boolean done)voidsetFailed(boolean failed)voidsetForwardingURL(String forwardingURL)voidsetPercent(int percent)voidsetTaskId(String taskId)
-
-
-
Method Detail
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
- Parameters:
description- string a description of the progress
-
getForwardingURL
public String getForwardingURL()
- Returns:
- the forwardingURL
-
setForwardingURL
public void setForwardingURL(String forwardingURL)
- Parameters:
forwardingURL- the forwardingURL to set
-
getPercent
public int getPercent()
-
setPercent
public void setPercent(int percent)
-
getTaskId
public String getTaskId()
- Returns:
- the taskId
-
setTaskId
public void setTaskId(String taskId)
- Parameters:
taskId- the taskId to set
-
isDone
public boolean isDone()
-
setDone
public void setDone(boolean done)
-
isFailed
public boolean isFailed()
-
setFailed
public void setFailed(boolean failed)
-
-