JAL-3878 Add action and task for annotation services
[jalview.git] / src / jalview / ws2 / client / api / AnnotationWebServiceClientI.java
1 package jalview.ws2.client.api;
2
3 import jalview.ws2.actions.annotation.AnnotationProviderI;
4
5 /**
6  * A mixin interface used by annotation services combining
7  * {@link WebServiceClientI} and {@link AnnotationProviderI} functionality into
8  * one interface. Annotation services use this interface to issue queries to the
9  * server.
10  * 
11  * @author mmwarowny
12  */
13 public interface AnnotationWebServiceClientI extends WebServiceClientI, AnnotationProviderI
14 {
15
16 }