JAL-3878 Separate gui elements from operations.
[jalview.git] / src / jalview / ws2 / slivka / SlivkaWebService.java
index 4c58b61..9f04290 100644 (file)
@@ -46,12 +46,8 @@ public class SlivkaWebService implements WebServiceI
   protected final SlivkaClient client;
 
   protected final SlivkaService service;
-
-  protected SlivkaDatastore store = null;
-
-  protected final ArrayList<Operation> operations = new ArrayList<>();
-
-  protected int typeFlags = 0;
+  
+  protected ParamDatastoreI store;
 
   protected static final EnumMap<Job.Status, WSJobStatus> statusMap = new EnumMap<>(
           Job.Status.class);
@@ -100,22 +96,6 @@ public class SlivkaWebService implements WebServiceI
   }
 
   @Override
-  public List<Operation> getOperations()
-  {
-    return operations;
-  }
-
-  void addOperation(Operation operation)
-  {
-    operations.add(operation);
-  }
-
-  void removeOperation(Operation operation)
-  {
-    operations.remove(operation);
-  }
-
-  @Override
   public boolean hasParameters()
   {
     return getParamStore().getServiceParameters().size() > 0;