JAL-3878 Separate gui elements from operations.
[jalview.git] / src / jalview / ws2 / WebServiceI.java
index 6781668..a09233f 100755 (executable)
@@ -24,13 +24,11 @@ public interface WebServiceI
 
   public String getProviderName();
 
-  public String getName();
+  String getName();
 
-  public String getDescription();
+  String getDescription();
 
-  public List<Operation> getOperations();
-
-  public boolean hasParameters();
+  boolean hasParameters();
 
   public ParamDatastoreI getParamStore();
 
@@ -39,8 +37,6 @@ public interface WebServiceI
 
   public void updateProgress(WSJob job) throws IOException;
 
-  // public <T> ResultSupplier<T> getResultSupplier(Class<T> type);
-
   public void cancel(WSJob job) throws IOException;
 
   /**