Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoItemData.java')
-rw-r--r--plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoItemData.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoItemData.java b/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoItemData.java
index a4c4f2b1def..292cab86553 100644
--- a/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoItemData.java
+++ b/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoItemData.java
@@ -32,6 +32,8 @@ public class DispoItemData implements DispoItem {
private String version;
private JSONObject discrepanciesList;
private JSONArray annotationsList;
+ private String totalPoints;
+ private Boolean needsRerun;
public DispoItemData() {
@@ -82,6 +84,16 @@ public class DispoItemData implements DispoItem {
return annotationsList;
}
+ @Override
+ public String getTotalPoints() {
+ return totalPoints;
+ }
+
+ @Override
+ public Boolean getNeedsRerun() {
+ return needsRerun;
+ }
+
public void setName(String name) {
this.name = name;
}
@@ -118,6 +130,14 @@ public class DispoItemData implements DispoItem {
this.assignee = assignee;
}
+ public void setTotalPoints(String totalPoints) {
+ this.totalPoints = totalPoints;
+ }
+
+ public void setNeedsRerun(boolean needsRerun) {
+ this.needsRerun = needsRerun;
+ }
+
@Override
public boolean matches(Identity<?>... identities) {
for (Identity<?> identity : identities) {

Back to the top