JAL-3070 UIinfo provides JobParameterStoreI
authorJim Procter <jprocter@issues.jalview.org>
Thu, 26 Jul 2018 12:12:48 +0000 (13:12 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Thu, 26 Jul 2018 12:12:48 +0000 (13:12 +0100)
src/jalview/gui/WsJobParameters.java
src/jalview/ws/api/UIinfo.java

index f2c4e96..f7906e5 100644 (file)
@@ -23,7 +23,7 @@ package jalview.gui;
 import jalview.gui.OptsAndParamsPage.OptionBox;
 import jalview.gui.OptsAndParamsPage.ParamBox;
 import jalview.util.MessageManager;
-import jalview.ws.jws2.jabaws2.Jws2Instance;
+import jalview.ws.api.UIinfo;
 import jalview.ws.params.ArgumentI;
 import jalview.ws.params.OptionI;
 import jalview.ws.params.ParamDatastoreI;
@@ -131,7 +131,7 @@ public class WsJobParameters extends JPanel implements ItemListener,
 
   JDialog frame = null;
 
-  Jws2Instance service;
+  UIinfo service;
 
   /*
    * list of service presets in the gui
@@ -170,7 +170,7 @@ public class WsJobParameters extends JPanel implements ItemListener,
    * @param preset
    * @param jobArgset
    */
-  public WsJobParameters(ParamDatastoreI paramStorei, Jws2Instance service,
+  public WsJobParameters(ParamDatastoreI paramStorei, UIinfo service,
           WsParamSetI preset, List<ArgumentI> jobArgset)
   {
     super();
index cf44266..2cffa84 100644 (file)
@@ -1,5 +1,7 @@
 package jalview.ws.api;
 
+import jalview.ws.params.ParamDatastoreI;
+
 /**
  * Service UI Info { Action, Specific Name of Service, Brief Description }
  */
@@ -120,4 +122,10 @@ public class UIinfo
   {
     return hostURL;
   }
+
+  public ParamDatastoreI getParamStore()
+  {
+    // TODO Auto-generated method stub
+    return null;
+  }
 }
\ No newline at end of file