Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.discovery/src/org/eclipse/osee/ote/discovery/OTEServerDiscovery.java')
-rw-r--r--plugins/org.eclipse.osee.ote.discovery/src/org/eclipse/osee/ote/discovery/OTEServerDiscovery.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/org.eclipse.osee.ote.discovery/src/org/eclipse/osee/ote/discovery/OTEServerDiscovery.java b/plugins/org.eclipse.osee.ote.discovery/src/org/eclipse/osee/ote/discovery/OTEServerDiscovery.java
deleted file mode 100644
index 3b50be627c3..00000000000
--- a/plugins/org.eclipse.osee.ote.discovery/src/org/eclipse/osee/ote/discovery/OTEServerDiscovery.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package org.eclipse.osee.ote.discovery;
-
-import java.net.URISyntaxException;
-import java.util.List;
-
-public interface OTEServerDiscovery {
-
- List<OTEServerLocation> findServerByTitle(String regex) throws URISyntaxException;
- List<OTEServerLocation> findServerByMachine(String regex) throws URISyntaxException;
- List<OTEServerLocation> findServerByMachineAndTitle(String regexMachine, String regexTitle) throws URISyntaxException;
- List<OTEServerLocation> getAll() throws URISyntaxException;
- List<OTEServerLocation> findServerByTitle(String regex, long timeoutMs) throws URISyntaxException;
- List<OTEServerLocation> findServerByMachine(String string, long timeoutMs) throws URISyntaxException;
- List<OTEServerLocation> findServerByMachineAndTitle(String regexMachine, String regexTitle, long timeoutMs) throws URISyntaxException;
-
-}

Back to the top