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/DispoAnnotationData.java')
-rw-r--r--plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoAnnotationData.java28
1 files changed, 23 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoAnnotationData.java b/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoAnnotationData.java
index 8a8cacc31f5..aef456f6fd4 100644
--- a/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoAnnotationData.java
+++ b/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoAnnotationData.java
@@ -25,12 +25,14 @@ public class DispoAnnotationData implements Identifiable<String> {
private String id;
private int index;
- private String notes;
+ private String developerNotes;
+ private String customerNotes;
private String locationRefs;
private boolean isConnected;
private JSONArray idsOfCoveredDiscrepancies;
private String resolution;
private boolean isResolutionValid;
+ private String resolutionType;
public DispoAnnotationData() {
@@ -54,8 +56,12 @@ public class DispoAnnotationData implements Identifiable<String> {
return index;
}
- public String getNotes() {
- return notes;
+ public String getDeveloperNotes() {
+ return developerNotes;
+ }
+
+ public String getCustomerNotes() {
+ return customerNotes;
}
public String getLocationRefs() {
@@ -78,12 +84,20 @@ public class DispoAnnotationData implements Identifiable<String> {
return isResolutionValid;
}
+ public String getResolutionType() {
+ return resolutionType;
+ }
+
public void setLocationRefs(String locationRefs) {
this.locationRefs = locationRefs;
}
- public void setNotes(String notes) {
- this.notes = notes;
+ public void setDeveloperNotes(String developerNotes) {
+ this.developerNotes = developerNotes;
+ }
+
+ public void setCustomerNotes(String customerNotes) {
+ this.customerNotes = customerNotes;
}
public void setId(String id) {
@@ -110,6 +124,10 @@ public class DispoAnnotationData implements Identifiable<String> {
this.isResolutionValid = isResolutionValid;
}
+ public void setResolutionType(String resolutionType) {
+ this.resolutionType = resolutionType;
+ }
+
public void addCoveredDiscrepancyIndex(Discrepancy discrepancy) {
idsOfCoveredDiscrepancies.put(discrepancy.getId());
}

Back to the top