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;
23 import java.util.List;
26 * A web service parameter set
29 public interface WsParamSetI
32 * Human readable name for parameter set
34 * @return unique string (given applicable URLs)
36 public String getName();
39 * @return notes about this parameter set
41 public String getDescription();
44 * the service endpoints for which this parameter set is valid
46 * @return one or more URLs
48 public String[] getApplicableUrls();
52 * @return null, or the file used to store this parameter set.
54 public String getSourceFile();
57 * set the filename used to store this parameter set.
61 public void setSourceFile(String newfile);
64 * is this a preset or a user modifiable parameter set
66 * @return true if set can be modified
68 public boolean isModifiable();
72 * @return arguments in preset
74 List<ArgumentI> getArguments();
77 * set the arguments for the preset. Should this preset instance be
78 * unmodifiable, an Error should be thrown.
82 public void setArguments(List<ArgumentI> args);