X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fdbsources%2Fdas%2Fapi%2FDasSourceRegistryI.java;h=742b51ebce3e4f976cab0c42eb8290ce364e5814;hb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;hp=b745519421db6a8c5062440970d63fbf11c1b9ab;hpb=daf7e11e56c1c5d99c2c1bc0113f33d2f0375f93;p=jalview.git diff --git a/src/jalview/ws/dbsources/das/api/DasSourceRegistryI.java b/src/jalview/ws/dbsources/das/api/DasSourceRegistryI.java index b745519..742b51e 100644 --- a/src/jalview/ws/dbsources/das/api/DasSourceRegistryI.java +++ b/src/jalview/ws/dbsources/das/api/DasSourceRegistryI.java @@ -1,17 +1,34 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) + * Copyright (C) 2015 The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.ws.dbsources.das.api; -import java.util.Hashtable; import java.util.List; -import java.util.Map; -import org.biodas.jdas.client.ConnectionPropertyProviderI; import org.biodas.jdas.client.threads.MultipleConnectionPropertyProviderI; -import org.biodas.jdas.schema.sources.SOURCE; /** * API for a registry that provides datasources that jalview can access + * * @author jprocter - * + * */ public interface DasSourceRegistryI { @@ -22,8 +39,11 @@ public interface DasSourceRegistryI jalviewSourceI getSource(String nickname); - jalviewSourceI createLocalSource(String uri, String name, boolean sequence, - boolean features); + // TODO: re JAL-424 - introduce form where local source is queried for + // metadata, rather than have it all provided by caller. + jalviewSourceI createLocalSource(String uri, String name, + boolean sequence, boolean features); + boolean removeLocalSource(jalviewSourceI source); void refreshSources(); @@ -31,6 +51,7 @@ public interface DasSourceRegistryI String getLocalSourceString(); List resolveSourceNicknames(List sources); + // TODO: refactor to jDAS specific interface MultipleConnectionPropertyProviderI getSessionHandler(); }