Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoConfig.java')
-rw-r--r--plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoConfig.java77
1 files changed, 77 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoConfig.java b/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoConfig.java
new file mode 100644
index 00000000000..ee00495b30d
--- /dev/null
+++ b/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoConfig.java
@@ -0,0 +1,77 @@
+/*******************************************************************************
+ * Copyright (c) 2014 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.disposition.model;
+
+/**
+ * @author Angel Avila
+ */
+
+public class DispoConfig {
+
+ private String type;
+ private String name;
+ private String resolutionType;
+ private String resolutionTitle;
+ private String peerNotes;
+ private String customerNotes;
+
+ public DispoConfig() {
+
+ }
+
+ public String getType() {
+ return type;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public String getResolutionType() {
+ return resolutionType;
+ }
+
+ public String getResolutionTitle() {
+ return resolutionTitle;
+ }
+
+ public String getPeerNotes() {
+ return peerNotes;
+ }
+
+ public String getCustomerNotes() {
+ return customerNotes;
+ }
+
+ public void setType(String type) {
+ this.type = type;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public void setResolutionType(String resolutionType) {
+ this.resolutionType = resolutionType;
+ }
+
+ public void setResolutionTitle(String resolutionTitle) {
+ this.resolutionTitle = resolutionTitle;
+ }
+
+ public void setPeerNotes(String peerNotes) {
+ this.peerNotes = peerNotes;
+ }
+
+ public void setCustomerNotes(String customerNotes) {
+ this.customerNotes = customerNotes;
+ }
+}

Back to the top