Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/Link.java')
-rw-r--r--plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/Link.java16
1 files changed, 12 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/Link.java b/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/Link.java
index 7f500b6cd2b..abec1f4d635 100644
--- a/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/Link.java
+++ b/plugins/org.eclipse.osee.account.rest.model/src/org/eclipse/osee/account/rest/model/Link.java
@@ -10,6 +10,9 @@
*******************************************************************************/
package org.eclipse.osee.account.rest.model;
+import java.util.ArrayList;
+import java.util.List;
+
/**
* @author Angel Avila
*/
@@ -18,10 +21,7 @@ public class Link {
String url;
String id;
String team;
-
- public Link() {
-
- }
+ List<String> tags = new ArrayList<String>();
public void setId(String id) {
this.id = id;
@@ -54,4 +54,12 @@ public class Link {
public String getTeam() {
return team;
}
+
+ public List<String> getTags() {
+ return tags;
+ }
+
+ public void setTags(List<String> tags) {
+ this.tags = tags;
+ }
}

Back to the top