Skip to main content
summaryrefslogblamecommitdiffstats
blob: 3b50be627c3d2388ca8f76b102516c92ceecd228 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                                                                                         
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