Skip to content

Commit

Permalink
Add isDynamic field to Virtual Study in Session Service
Browse files Browse the repository at this point in the history
  • Loading branch information
forus committed Oct 2, 2024
1 parent 66df667 commit 6e948ff
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/org/cbioportal/web/parameter/VirtualStudyData.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ public class VirtualStudyData implements Serializable {
private String typeOfCancerId;
private String pmid;

private Boolean isDynamic;

public String getOwner() {
return owner;
}
Expand Down Expand Up @@ -122,4 +124,12 @@ public String getPmid() {
public void setPmid(String pmid) {
this.pmid = pmid;
}

public Boolean getDynamic() {
return isDynamic;
}

public void setDynamic(Boolean dynamic) {
isDynamic = dynamic;
}
}

0 comments on commit 6e948ff

Please sign in to comment.