Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OrcsTypesSheet.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OrcsTypesSheet.java56
1 files changed, 56 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OrcsTypesSheet.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OrcsTypesSheet.java
new file mode 100644
index 00000000000..5a11d63dcfc
--- /dev/null
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OrcsTypesSheet.java
@@ -0,0 +1,56 @@
+/*******************************************************************************
+ * Copyright (c) 2016 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.framework.core.data;
+
+import org.codehaus.jackson.map.annotate.JsonSerialize;
+import org.codehaus.jackson.map.ser.std.ToStringSerializer;
+
+/**
+ * @author Donald G. Dunne
+ */
+public class OrcsTypesSheet {
+
+ @JsonSerialize(using = ToStringSerializer.class)
+ private long artifactId;
+ @JsonSerialize(using = ToStringSerializer.class)
+ private long attrId;
+ private String name;
+
+ public long getArtifactId() {
+ return artifactId;
+ }
+
+ public void setArtifactId(long artifactId) {
+ this.artifactId = artifactId;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public long getAttrId() {
+ return attrId;
+ }
+
+ public void setAttrId(long attrId) {
+ this.attrId = attrId;
+ }
+
+ @Override
+ public String toString() {
+ return "OrcsTypesSheet [artId=" + artifactId + ", attrId=" + attrId + ", name=" + name + "]";
+ }
+
+}

Back to the top