c83ee624c21b2a9f52db39b8d7c6109f96b56d3d
[jalview.git] / src / jalview / ws / dbsources / das / api / DasSourceRegistryI.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8)
3  * Copyright (C) 2012 J Procter, AM Waterhouse, LM Lui, J Engelhardt, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.ws.dbsources.das.api;
19
20 import java.util.List;
21
22 import org.biodas.jdas.client.threads.MultipleConnectionPropertyProviderI;
23
24 /**
25  * API for a registry that provides datasources that jalview can access
26  * 
27  * @author jprocter
28  * 
29  */
30 public interface DasSourceRegistryI
31 {
32
33   List<jalviewSourceI> getSources();
34
35   String getDasRegistryURL();
36
37   jalviewSourceI getSource(String nickname);
38
39   // TODO: re JAL-424 - introduce form where local source is queried for
40   // metadata, rather than have it all provided by caller.
41   jalviewSourceI createLocalSource(String uri, String name,
42           boolean sequence, boolean features);
43
44   boolean removeLocalSource(jalviewSourceI source);
45
46   void refreshSources();
47
48   String getLocalSourceString();
49
50   List<jalviewSourceI> resolveSourceNicknames(List<String> sources);
51
52   // TODO: refactor to jDAS specific interface
53   MultipleConnectionPropertyProviderI getSessionHandler();
54 }