Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/exchange/transform/V0_9_0TypeHandler.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/exchange/transform/V0_9_0TypeHandler.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/exchange/transform/V0_9_0TypeHandler.java b/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/exchange/transform/V0_9_0TypeHandler.java
new file mode 100644
index 00000000000..89238ab7daf
--- /dev/null
+++ b/plugins/org.eclipse.osee.orcs.db/src/org/eclipse/osee/orcs/db/internal/exchange/transform/V0_9_0TypeHandler.java
@@ -0,0 +1,58 @@
+/*******************************************************************************
+ * Copyright (c) 2009 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.orcs.db.internal.exchange.transform;
+
+import java.util.HashMap;
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
+import org.eclipse.osee.framework.core.model.cache.AbstractOseeCache;
+import org.eclipse.osee.framework.jdk.core.util.io.xml.AbstractSaxHandler;
+import org.xml.sax.Attributes;
+
+/**
+ * @author Ryan D. Brooks
+ */
+public class V0_9_0TypeHandler extends AbstractSaxHandler {
+ private final HashMap<Integer, String> typeIdMap = new HashMap<Integer, String>(100);
+ private final String typeIdColumn;
+ private final String typeNameColumn;
+ private final AbstractOseeCache<?, ?> cache;
+
+ public V0_9_0TypeHandler(AbstractOseeCache<?, ?> cache, String typeIdColumn, String typeNameColumn) {
+ this.typeIdColumn = typeIdColumn;
+ this.typeNameColumn = typeNameColumn;
+ this.cache = cache;
+ }
+
+ @Override
+ public void endElementFound(String uri, String localName, String qName) {
+ //
+ }
+
+ @Override
+ public void startElementFound(String uri, String localName, String qName, Attributes attributes) throws OseeCoreException {
+ if (localName.equals("entry")) {
+ String typeName = attributes.getValue(typeNameColumn);
+ if (typeName.equals("ats.Parent Branch Id")) {
+ typeName = "ats.Baseline Branch Guid";
+ } else if (typeName.equals("Narrative")) {
+ typeName = "Heading";
+ } else if (typeName.equals("ats.Parent Branch Id")) {
+ typeName = "ats.Baseline Branch Guid";
+ }
+ String guid = String.valueOf(cache.getBySoleName(typeName).getGuid());
+ typeIdMap.put(Integer.parseInt(attributes.getValue(typeIdColumn)), guid);
+ }
+ }
+
+ public HashMap<Integer, String> getTypeIdMap() {
+ return typeIdMap;
+ }
+} \ No newline at end of file

Back to the top