Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2016-06-20 16:12:28 +0000
committerAngel Avila2016-06-20 16:12:28 +0000
commit518e53e5f3bdcf0f4dd220c8673a9dd80bf9d554 (patch)
tree8b1a271cf92b9d3f7e5e75792f31696f34fa370f /plugins/org.eclipse.osee.ats.api
parentca5dfda52de77513a40162e1cda91d4812ce5f1e (diff)
downloadorg.eclipse.osee-518e53e5f3bdcf0f4dd220c8673a9dd80bf9d554.tar.gz
org.eclipse.osee-518e53e5f3bdcf0f4dd220c8673a9dd80bf9d554.tar.xz
org.eclipse.osee-518e53e5f3bdcf0f4dd220c8673a9dd80bf9d554.zip
feature[ats_WVVPL]: Add SendNotificationEvents by email address
Diffstat (limited to 'plugins/org.eclipse.osee.ats.api')
-rw-r--r--plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsNotificationEvent.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsNotificationEvent.java b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsNotificationEvent.java
index f894079378e..fd48f80123c 100644
--- a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsNotificationEvent.java
+++ b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/notify/AtsNotificationEvent.java
@@ -21,6 +21,7 @@ import javax.xml.bind.annotation.XmlRootElement;
public class AtsNotificationEvent {
private Collection<String> userIds = new HashSet<>();
+ private Collection<String> emailAddresses = new HashSet<>();
private String id;
private String fromUserId;
private String type;
@@ -77,7 +78,15 @@ public class AtsNotificationEvent {
@Override
public String toString() {
- return "AtsNotificationEvent [userIds=" + userIds + ", id=" + id + ", fromUserId=" + fromUserId + ", type=" + type + ", description=" + description + "]";
+ return "AtsNotificationEvent [userIds=" + userIds + ", emailAddresses=" + emailAddresses + ", id=" + id + ", fromUserId=" + fromUserId + ", type=" + type + ", description=" + description + ", url=" + url + "]";
+ }
+
+ public Collection<String> getEmailAddresses() {
+ return emailAddresses;
+ }
+
+ public void setEmailAddresses(Collection<String> emailAddresses) {
+ this.emailAddresses = emailAddresses;
}
}

Back to the top