X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Frest%2FRestClient.java;h=2d39db587127a40e2b04bc1d7c938d1573be9b4f;hb=7b9f93ca2c7f5e5d9347f00be309522f76e3e778;hp=eea6474af876441c1fe5dcf7946a3435b3756fbe;hpb=57fd679367c2aee35500b9a95d9710d760360121;p=jalview.git diff --git a/src/jalview/ws/rest/RestClient.java b/src/jalview/ws/rest/RestClient.java index eea6474..2d39db5 100644 --- a/src/jalview/ws/rest/RestClient.java +++ b/src/jalview/ws/rest/RestClient.java @@ -30,15 +30,14 @@ import jalview.gui.AlignmentPanel; import jalview.gui.Desktop; import jalview.gui.JvOptionPane; import jalview.gui.WebserviceInfo; -import jalview.io.packed.DataProvider.JvDataType; import jalview.util.MessageManager; import jalview.ws.WSClient; import jalview.ws.WSClientI; import jalview.ws.WSMenuEntryProviderI; +import jalview.ws.rest.clientdefs.ShmrRestClient; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; -import java.util.Hashtable; import java.util.Vector; import javax.swing.JMenu; @@ -54,6 +53,13 @@ public class RestClient extends WSClient implements WSClientI, WSMenuEntryProviderI, ApplicationSingletonI { + @SuppressWarnings("unused") + private RestClient() + { + // accessed by ApplicationSingletonProvider + } + + private static RestClient getInstance() { return (RestClient) ApplicationSingletonProvider.getInstance(RestClient.class); @@ -113,17 +119,17 @@ public static final String RSBS_SERVICES = "RSBS_SERVICES"; { WebServiceJobTitle = MessageManager .formatMessage("label.webservice_job_title", new String[] - { service.details.Action, service.details.Name }); - WebServiceName = service.details.Name; + { service.details.getAction(), service.details.getName() }); + WebServiceName = service.details.getName(); WebServiceReference = "No reference - go to url for more info"; - if (service.details.description != null) + if (service.details.getDescription() != null) { - WebServiceReference = service.details.description; + WebServiceReference = service.details.getDescription(); } if (!headless) { wsInfo = new WebserviceInfo(WebServiceJobTitle, - WebServiceName + "\n" + WebServiceReference, true); + WebServiceName + "\n" + WebServiceReference, Desktop.FRAME_MAKE_VISIBLE); wsInfo.setRenderAsHtml(true); } @@ -155,10 +161,10 @@ public static final String RSBS_SERVICES = "RSBS_SERVICES"; public void attachWSMenuEntry(final JMenu wsmenu, final AlignFrame alignFrame) { - JMenuItem submit = new JMenuItem(service.details.Name); + JMenuItem submit = new JMenuItem(service.details.getName()); submit.setToolTipText(MessageManager .formatMessage("label.rest_client_submit", new String[] - { service.details.Action, service.details.Name })); + { service.details.getAction(), service.details.getName() })); submit.addActionListener(new ActionListener() { @@ -353,46 +359,6 @@ public static final String RSBS_SERVICES = "RSBS_SERVICES"; } } - public static RestClient makeShmmrRestClient() - { - String action = "Analysis", - description = "Sequence Harmony and Multi-Relief (Brandt et al. 2010)", - name = MessageManager.getString("label.multiharmony"); - Hashtable iparams = new Hashtable(); - jalview.ws.rest.params.JobConstant toolp; - // toolp = new jalview.ws.rest.JobConstant("tool","jalview"); - // iparams.put(toolp.token, toolp); - // toolp = new jalview.ws.rest.params.JobConstant("mbjob[method]","shmr"); - // iparams.put(toolp.token, toolp); - // toolp = new - // jalview.ws.rest.params.JobConstant("mbjob[description]","step 1"); - // iparams.put(toolp.token, toolp); - // toolp = new jalview.ws.rest.params.JobConstant("start_search","1"); - // iparams.put(toolp.token, toolp); - // toolp = new jalview.ws.rest.params.JobConstant("blast","0"); - // iparams.put(toolp.token, toolp); - - jalview.ws.rest.params.Alignment aliinput = new jalview.ws.rest.params.Alignment(); - // SHMR server has a 65K limit for content pasted into the 'ali' parameter, - // so we always upload our files. - aliinput.token = "ali_file"; - aliinput.writeAsFile = true; - iparams.put(aliinput.token, aliinput); - jalview.ws.rest.params.SeqGroupIndexVector sgroups = new jalview.ws.rest.params.SeqGroupIndexVector(); - sgroups.setMinsize(2); - sgroups.min = 2;// need at least two group defined to make a partition - iparams.put("groups", sgroups); - sgroups.token = "groups"; - sgroups.sep = " "; - RestServiceDescription shmrService = new RestServiceDescription(action, - description, name, - "http://zeus.few.vu.nl/programs/shmrwww/index.php?tool=jalview", // ?tool=jalview&mbjob[method]=shmr&mbjob[description]=step1", - "?tool=jalview", iparams, true, false, '-'); - // a priori knowledge of the data returned from the service - shmrService.addResultDatatype(JvDataType.ANNOTATION); - return new RestClient(shmrService); - } - public AlignmentPanel recoverAlignPanelForView() { AlignmentPanel[] aps = Desktop @@ -422,13 +388,13 @@ public static final String RSBS_SERVICES = "RSBS_SERVICES"; { if (services == null) { - services = new Vector(); + services = new Vector<>(); try { for (RestServiceDescription descr : RestServiceDescription - .parseDescriptions( - jalview.bin.Cache.getDefault(RSBS_SERVICES, - makeShmmrRestClient().service.toString()))) + .parseDescriptions(jalview.bin.Cache.getDefault( + RSBS_SERVICES, + ShmrRestClient.makeShmmrRestClient().service.toString()))) { services.add(descr.toString()); } @@ -451,7 +417,7 @@ public static final String RSBS_SERVICES = "RSBS_SERVICES"; public String getAction() { - return service.details.Action; + return service.details.getAction(); } public RestServiceDescription getRestDescription() @@ -461,7 +427,7 @@ public static final String RSBS_SERVICES = "RSBS_SERVICES"; public static Vector getRsbsDescriptions() { - Vector rsbsDescrs = new Vector(); + Vector rsbsDescrs = new Vector<>(); for (RestClient rsbs : getRestClients()) { rsbsDescrs.add(rsbs.getRestDescription().toString());