Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2016-04-26 15:21:35 +0000
committerRyan D. Brooks2016-04-26 15:21:35 +0000
commit37f1177d729129def1bb2f8ed6aa45dddfac28a5 (patch)
tree024693d3fecc4161dccd7f0d58d5eb54ccaf3f06 /plugins/org.eclipse.osee.ats.api
parent961a9456c8600ae4bf51940ad9427f4e9e91376b (diff)
downloadorg.eclipse.osee-37f1177d729129def1bb2f8ed6aa45dddfac28a5.tar.gz
org.eclipse.osee-37f1177d729129def1bb2f8ed6aa45dddfac28a5.tar.xz
org.eclipse.osee-37f1177d729129def1bb2f8ed6aa45dddfac28a5.zip
bug: Fix AtsQueryServiceImpl to check for supported namespaces
Diffstat (limited to 'plugins/org.eclipse.osee.ats.api')
-rw-r--r--plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/query/IAtsSearchDataProvider.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/query/IAtsSearchDataProvider.java b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/query/IAtsSearchDataProvider.java
index 6a1120b77ce..306e66005e1 100644
--- a/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/query/IAtsSearchDataProvider.java
+++ b/plugins/org.eclipse.osee.ats.api/src/org/eclipse/osee/ats/api/query/IAtsSearchDataProvider.java
@@ -10,13 +10,17 @@
*******************************************************************************/
package org.eclipse.osee.ats.api.query;
+import java.util.List;
+
/**
* @author Donald G. Dunne
*/
public interface IAtsSearchDataProvider {
- public AtsSearchData fromJson(String namespace, String json);
+ AtsSearchData fromJson(String namespace, String json);
+
+ AtsSearchData createSearchData(String namespace, String searchName);
- public AtsSearchData createSearchData(String namespace, String searchName);
+ List<String> getSupportedNamespaces();
}

Back to the top