Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ public class CohortCharacterizationImpl implements CohortCharacterization {
private List<CcStrataImpl> stratas = new ArrayList<>();
private Boolean strataOnly;
private List<ConceptSet> conceptSets = new ArrayList<>();
private String version = null;
private String organizationName = null;
private String packageName = null;
private String skeletonType = "";
private String skeletonVersion = "v0.0.1";

@Override
public Long getId() {
Expand Down Expand Up @@ -103,4 +108,46 @@ public void setConceptSets(List<ConceptSet> conceptSets) {

this.conceptSets = conceptSets;
}

public String getVersion() {
return version;
}

public void setVersion(String version) {
this.version = version;
}

public String getOrganizationName() {
return organizationName;
}

public void setOrganizationName(String organizationName) {
this.organizationName = organizationName;
}

public String getPackageName() {
return packageName;
}

public void setPackageName(String packageName) {
this.packageName = packageName;
}

public String getSkeletonType() {
return skeletonType;
}

public void setSkeletonType(String skeletonType) {
this.skeletonType = skeletonType;
}

public String getSkeletonVersion() {
return skeletonVersion;
}

public void setSkeletonVersion(String skeletonVersion) {
this.skeletonVersion = skeletonVersion;
}


}