JAL-3878 Change visibility of WebService methods to public.
authorMateusz Warowny <mmzwarowny@dundee.ac.uk>
Fri, 4 Mar 2022 13:19:45 +0000 (14:19 +0100)
committerMateusz Warowny <mmzwarowny@dundee.ac.uk>
Fri, 4 Mar 2022 13:19:45 +0000 (14:19 +0100)
src/jalview/ws2/api/WebService.java

index 6de3acd..6831541 100644 (file)
@@ -142,47 +142,47 @@ public class WebService<T extends ActionI>
     return new Builder<T>();
   }
 
-  URL getUrl()
+  public URL getUrl()
   {
     return url;
   }
 
-  String getClientName()
+  public String getClientName()
   {
     return clientName;
   }
 
-  String getCategory()
+  public String getCategory()
   {
     return category;
   }
 
-  String getName()
+  public String getName()
   {
     return name;
   }
 
-  String getDescription()
+  public String getDescription()
   {
     return description;
   }
 
-  boolean isInteractive()
+  public boolean isInteractive()
   {
     return interactive;
   }
 
-  ParamDatastoreI getParamDatastore()
+  public ParamDatastoreI getParamDatastore()
   {
     return paramDatastore;
   }
 
-  List<T> getActions()
+  public List<T> getActions()
   {
     return actions;
   }
 
-  Class<T> getActionClass()
+  public Class<T> getActionClass()
   {
     return actionClass;
   }