Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/saxparse/elements/SystemInfoData.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/saxparse/elements/SystemInfoData.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/saxparse/elements/SystemInfoData.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/saxparse/elements/SystemInfoData.java
deleted file mode 100644
index 86045751c23..00000000000
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/framework/saxparse/elements/SystemInfoData.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 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.ote.core.framework.saxparse.elements;
-
-/**
- * @author Andrew M. Finkbeiner
- */
-public class SystemInfoData {
-
- private final String osArch;
- private final String osName;
- private final String osVersion;
- private final String oseeVersion;
- private final String oseeServerTitle;
-
- /**
- * @return the osArch
- */
- public String getOsArch() {
- return osArch;
- }
-
- /**
- * @return the osName
- */
- public String getOsName() {
- return osName;
- }
-
- /**
- * @return the osVersion
- */
- public String getOsVersion() {
- return osVersion;
- }
-
- /**
- * @return the oseeVersion
- */
- public String getOseeVersion() {
- return oseeVersion;
- }
-
- /**
- * @return the oseeServerTitle
- */
- public String getOseeServerTitle() {
- return oseeServerTitle;
- }
-
- SystemInfoData(String osArch, String osName, String osVersion, String oseeVersion, String oseeServerTitle) {
- this.osArch = osArch;
- this.osName = osName;
- this.osVersion = osVersion;
- this.oseeVersion = oseeVersion;
- this.oseeServerTitle = oseeServerTitle;
- }
-
-}

Back to the top