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:
  • Constructor Details

    • ProgressData

      public ProgressData()
    • ProgressData

      public ProgressData(String taskId, int per, String description)
    • ProgressData

      public ProgressData(String taskId, int per, String description, boolean finished)
      Parameters:
      taskId - task id
      per - int value of percent
      description - string a description of the progress
      finished - finished
  • Method Details

    • 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)