Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2012-06-01 00:00:09 +0000
committerRoberto E. Escobar2012-06-11 20:46:31 +0000
commit0423affbbcf21f41ea86135f88df2e8672ae44fd (patch)
tree1a3ed7a243c905adae669ce2befeccad514b808d /plugins/org.eclipse.osee.ats.core.client/src
parent9fd886b202cd475cc51d96a35daaea766e4dac78 (diff)
downloadorg.eclipse.osee-0423affbbcf21f41ea86135f88df2e8672ae44fd.tar.gz
org.eclipse.osee-0423affbbcf21f41ea86135f88df2e8672ae44fd.tar.xz
org.eclipse.osee-0423affbbcf21f41ea86135f88df2e8672ae44fd.zip
refactor: Delete AtsLegacyWorkDefinitionProvider extension
Diffstat (limited to 'plugins/org.eclipse.osee.ats.core.client/src')
-rw-r--r--plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/workdef/IWorkDefintionFactoryLegacyMgr.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/workdef/IWorkDefintionFactoryLegacyMgr.java b/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/workdef/IWorkDefintionFactoryLegacyMgr.java
deleted file mode 100644
index 0c9540e8860..00000000000
--- a/plugins/org.eclipse.osee.ats.core.client/src/org/eclipse/osee/ats/core/client/workdef/IWorkDefintionFactoryLegacyMgr.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 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.core.client.workdef;
-
-import org.eclipse.osee.ats.core.client.config.TeamDefinitionArtifact;
-import org.eclipse.osee.ats.core.workdef.WorkDefinitionMatch;
-import org.eclipse.osee.framework.core.exception.OseeCoreException;
-import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
-
-/**
- * @author Donald G. Dunne
- */
-public interface IWorkDefintionFactoryLegacyMgr {
-
- public WorkDefinitionMatch getWorkFlowDefinitionFromId(String id) throws OseeCoreException;
-
- public WorkDefinitionMatch getWorkFlowDefinitionFromReverseId(String id) throws OseeCoreException;
-
- public WorkDefinitionMatch getWorkFlowDefinitionFromArtifact(Artifact artifact) throws OseeCoreException;
-
- public WorkDefinitionMatch getWorkFlowDefinitionFromTeamDefition(TeamDefinitionArtifact teamDefinition) throws OseeCoreException;
-
- public String getOverrideId(String legacyId);
-
-}

Back to the top