Jira-integration: importedLabel variable with set and get methods added

When order elements of an existing order are synchronized for an specified label, the specified
label will be stored in order_table. This is to prevent that different labels being imported for
the specified order
This commit is contained in:
Miciele Ghiorghis 2012-10-25 15:13:08 +02:00 committed by Manuel Rego Casasnovas
parent 0c0ad5f3c2
commit 1ae8d9b1b7

View file

@ -120,6 +120,8 @@ public class Order extends OrderLineGroup implements Comparable {
private Set<CustomerCommunication> customerCommunications = new HashSet<CustomerCommunication>();
private String importedLabel;
@Valid
private SortedSet<DeadlineCommunication> deliveringDates = new TreeSet<DeadlineCommunication>(
new DeliverDateComparator());
@ -691,4 +693,12 @@ public class Order extends OrderLineGroup implements Comparable {
return true;
}
public String getImportedLabel() {
return importedLabel;
}
public void setImportedLabel(String importedLabel) {
this.importedLabel = importedLabel;
}
}