JAL-3878 Add WebServiceProviderI - a view of services.
[jalview.git] / src / jalview / ws2 / client / api / AlignmentWebServiceClientI.java
1 package jalview.ws2.client.api;
2
3 import jalview.ws2.actions.alignment.AlignmentProviderI;
4
5 /**
6  * A client interface for alignment services combining {@link WebServiceClientI}
7  * and {@link AlignmentProviderI} functionality into one interface.
8  * Alignment services use this interface to issue queries to the server.  
9  *  
10  * @author mmwarowny
11  */
12 public interface AlignmentWebServiceClientI extends WebServiceClientI, AlignmentProviderI
13 {
14
15 }