Class ClinicalUpdateResult

java.lang.Object
com.sas.lsaf.clinical.common.ClinicalUpdateResult
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
StudyUpdateResult, TlfUpdateResult

public class ClinicalUpdateResult extends Object implements Serializable
The class that represents the results of importing clinical data. Results include validation results and the path and source location of the validation report, if one is specified.
Since:
2.4
See Also:
  • Constructor Details

    • ClinicalUpdateResult

      public ClinicalUpdateResult(ValidationResult validationResult, String validationReportPath, SourceLocation validationReportSourceLocation)
      It is not intended or recommended that the consumer of this API construct these objects. They should only deal with the update results returned by the API.
      Parameters:
      validationResult - The validation results of importing clinical data.
      validationReportPath - The path of the validation report, if provided.
      validationReportSourceLocation - The source location (repository or workspace) of the validation report, if a validation path is specified. Otherwise, null.
  • Method Details

    • getValidationResult

      public ValidationResult getValidationResult()
      Gets the validation results of importing clinical data.
      Returns:
      The validation results of importing clinical data.
    • getValidationReportPath

      public String getValidationReportPath()
      Gets the path of the validation report, if specified. Otherwise, null.
      Returns:
      The path of the validation report, if specified. Otherwise, null.
    • getValidationReportSourceLocation

      public SourceLocation getValidationReportSourceLocation()
      Gets the source location (repository or workspace) of the validation report, if a validation path is specified. Otherwise, null.
      Returns:
      The source location (repository or workspace) of the validation report, if a validatioon path is specified. Otherwise, null.
    • toString

      public String toString()
      Overrides:
      toString in class Object