Class PipelineStatusValueObject.PipelineStepValueObject

java.lang.Object
ubic.gemma.rest.PipelineStatusValueObject.PipelineStepValueObject
Enclosing class:
PipelineStatusValueObject

public static class PipelineStatusValueObject.PipelineStepValueObject extends Object
  • Constructor Details

  • Method Details

    • getStep

      public String getStep()
      One of batchInfo, preprocess, pca, dea, coexpression, missingValue.
    • getState

      public String getState()
      One of ok, failed, notRun, notApplicable.
    • getLastRun

      @Nullable public Date getLastRun()
    • getEventType

      @Nullable public String getEventType()
      Simple class name of the latest audit event (BatchInformationFetchingEvent, FailedPCAAnalysisEvent, etc.). null when no event has been recorded.
    • getMessage

      @Nullable public String getMessage()
      Note attached to the latest audit event, when present. Most useful for failed steps where the failure reason is captured here.
    • setStep

      public void setStep(String step)
      One of batchInfo, preprocess, pca, dea, coexpression, missingValue.
    • setState

      public void setState(String state)
      One of ok, failed, notRun, notApplicable.
    • setLastRun

      public void setLastRun(@Nullable Date lastRun)
    • setEventType

      public void setEventType(@Nullable String eventType)
      Simple class name of the latest audit event (BatchInformationFetchingEvent, FailedPCAAnalysisEvent, etc.). null when no event has been recorded.
    • setMessage

      public void setMessage(@Nullable String message)
      Note attached to the latest audit event, when present. Most useful for failed steps where the failure reason is captured here.