Package com.sas.lsaf.clinical.common
Class ClinicalUpdateResult
java.lang.Object
com.sas.lsaf.clinical.common.ClinicalUpdateResult
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
StudyUpdateResult,TlfUpdateResult
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 Summary
ConstructorsConstructorDescriptionClinicalUpdateResult(ValidationResult validationResult, String validationReportPath, SourceLocation validationReportSourceLocation) It is not intended or recommended that the consumer of this API construct these objects. -
Method Summary
Modifier and TypeMethodDescriptionGets the path of the validation report, if specified.Gets the source location (repository or workspace) of the validation report, if a validation path is specified.Gets the validation results of importing clinical data.toString()
-
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
Gets the validation results of importing clinical data.- Returns:
- The validation results of importing clinical data.
-
getValidationReportPath
Gets the path of the validation report, if specified. Otherwise, null.- Returns:
- The path of the validation report, if specified. Otherwise, null.
-
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
-