Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/config/JaxActionableItem.java')
-rw-r--r--plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/config/JaxActionableItem.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/config/JaxActionableItem.java b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/config/JaxActionableItem.java
new file mode 100644
index 00000000000..a06e03f500a
--- /dev/null
+++ b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/config/JaxActionableItem.java
@@ -0,0 +1,61 @@
+/*******************************************************************************
+ * Copyright (c) 2017 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.ats.api.config;
+
+import java.util.ArrayList;
+import java.util.List;
+import org.codehaus.jackson.map.annotate.JsonSerialize;
+import org.codehaus.jackson.map.ser.std.ToStringSerializer;
+
+/**
+ * @author Donald G. Dunne
+ */
+public class JaxActionableItem extends JaxAtsConfigObject {
+
+ @JsonSerialize(using = ToStringSerializer.class)
+ Long parentId;
+ @JsonSerialize(using = ToStringSerializer.class)
+ Long teamDefId;
+ List<Long> children = new ArrayList<>();
+
+ public JaxActionableItem() {
+ // for jax-rs
+ }
+
+ public Long getParentId() {
+ return parentId;
+ }
+
+ public void setParentId(Long parentId) {
+ this.parentId = parentId;
+ }
+
+ public Long getTeamDefId() {
+ return teamDefId;
+ }
+
+ public void setTeamDefId(Long teamDefId) {
+ this.teamDefId = teamDefId;
+ }
+
+ public List<Long> getChildren() {
+ return children;
+ }
+
+ public void setChildren(List<Long> children) {
+ this.children = children;
+ }
+
+ public void addChild(JaxActionableItem child) {
+ children.add(child.getUuid());
+ }
+
+}

Back to the top