2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.ws.params;
24 * Interface implemented by classes for maintaining user's parameters in a
30 public interface ParamManager
35 * (may be null) select parameter sets with given name
37 * (may be null) select parameter sets that are applicable for the
40 * - if true, return modifiable parameter sets
42 * - if true, return server presets
43 * @return null if no parameters found, or one or more parameter sets
45 public WsParamSetI[] getParameterSet(String name, String serviceUrl,
46 boolean modifiable, boolean unmodifiable);
49 * save the given parameter set in the user's parameter set database. Note:
50 * this may result in a modal dialog box being raised.
54 public void storeParameterSet(WsParamSetI parameterSet);
57 * delete the specified parameter set from the database. Note: this may result
58 * in a modal dialog box being raised.
62 public void deleteParameterSet(WsParamSetI parameterSet);
65 * register a parser for the given host url
68 * @param jabaParamStore
70 public void registerParser(String hosturl, ParamDatastoreI paramdataStore);