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.jws1;
23 import jalview.gui.AlignFrame;
24 import jalview.gui.WebserviceInfo;
25 import jalview.util.MessageManager;
26 import jalview.ws.WSClient;
27 import jalview.ws.WSMenuEntryProviderI;
29 import javax.swing.JMenu;
31 import ext.vamsas.ServiceHandle;
34 * JWS1 Specific UI attributes and methods
39 public abstract class WS1Client extends WSClient implements
44 * original service handle that this client was derived from
46 ServiceHandle serviceHandle = null;
57 * initialise WSClient service information attributes from the service handle
60 * @return the service instance information GUI for this client and job.
62 protected WebserviceInfo setWebService(ServiceHandle sh)
64 return setWebService(sh, false);
68 * initialise WSClient service information attributes from the service handle
72 * true implies no GUI objects will be created.
73 * @return the service instance information GUI for this client and job.
75 protected WebserviceInfo setWebService(ServiceHandle sh, boolean headless)
77 WebServiceName = sh.getName();
78 if (ServiceActions.containsKey(sh.getAbstractName()))
80 WebServiceJobTitle = sh.getName(); // TODO: control sh.Name specification
82 // add this for short names. +(String)
83 // ServiceActions.get(sh.getAbstractName());
87 WebServiceJobTitle = sh.getAbstractName() + " using " + sh.getName();
90 WebServiceReference = sh.getDescription();
91 WsURL = sh.getEndpointURL();
92 WebserviceInfo wsInfo = null;
95 wsInfo = new WebserviceInfo(WebServiceJobTitle, WebServiceReference,
102 * convenience method to pass the serviceHandle reference that instantiated
103 * this service on to the menu entry constructor
106 * the menu to which any menu entries/sub menus are to be attached
108 * the alignFrame instance that provides input data for the service
110 public void attachWSMenuEntry(JMenu wsmenu, final AlignFrame alignFrame)
112 if (serviceHandle == null)
116 .getString("error.implementation_error_cannot_attach_ws_menu_entry"));
118 attachWSMenuEntry(wsmenu, serviceHandle, alignFrame);
122 * method implemented by each concrete WS1Client implementation that creates
123 * menu entries that enact their service using data from alignFrame.
126 * where new menu entries (and submenus) are to be attached
127 * @param serviceHandle
128 * the serviceHandle document for the service that entries are
132 public abstract void attachWSMenuEntry(JMenu wsmenu,
133 final ServiceHandle serviceHandle, final AlignFrame alignFrame);