Skip to content

Commit

Permalink
java.lang.reflect.UndeclaredThrowableException when download PLP #2132
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-abushkevich committed Oct 13, 2022
1 parent 9cfd1de commit b21693d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.util.ArrayList;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import org.ohdsi.analysis.hydra.design.SkeletonTypeEnum;
import org.ohdsi.analysis.estimation.design.EstimationAnalysis;
Expand All @@ -15,6 +16,7 @@
*
* @author asena5
*/
@JsonIgnoreProperties(ignoreUnknown=true, value = {"createdBy", "createdDate", "modifiedBy", "modifiedDate"})
@JsonInclude(JsonInclude.Include.NON_NULL)
public class EstimationAnalysisImpl implements EstimationAnalysis, CommonDTO {
private Integer id = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*
* @author asena5
*/
@JsonIgnoreProperties(ignoreUnknown=true)
@JsonIgnoreProperties(ignoreUnknown=true, value = {"createdBy", "createdDate", "modifiedBy", "modifiedDate"})
@JsonInclude(JsonInclude.Include.NON_NULL)
public class PatientLevelPredictionAnalysisImpl implements PatientLevelPredictionAnalysis, CommonDTO {
private Integer id = null;
Expand Down Expand Up @@ -182,7 +182,7 @@ public void setSkeletonVersion(String skeletonVersion) {
}

/**
* The person who created the analysis
* The person who created the analysis
* @return createdBy
**/
@Override
Expand All @@ -199,7 +199,7 @@ public void setCreatedBy(String createdBy) {
}

/**
* The date and time the estimation was first saved
* The date and time the estimation was first saved
* @return createdDate
**/
@Override
Expand All @@ -216,7 +216,7 @@ public void setCreatedDate(String createdDate) {
}

/**
* The last person to modify the analysis
* The last person to modify the analysis
* @return modifiedBy
**/
@Override
Expand All @@ -233,7 +233,7 @@ public void setModifiedBy(String modifiedBy) {
}

/**
* The date and time the estimation was last saved
* The date and time the estimation was last saved
* @return modifiedDate
**/
@Override
Expand All @@ -248,7 +248,7 @@ public String getModifiedDate() {
public void setModifiedDate(String modifiedDate) {
this.modifiedDate = modifiedDate;
}

/**
*
* @param cohortDefinitionsItem
Expand Down

0 comments on commit b21693d

Please sign in to comment.