JAL-3070 additional interfaces for web services (not yet used!)
[jalview.git] / src / jalview / ws / api / TreeResultI.java
1 package jalview.ws.api;
2
3 import jalview.analysis.NJTree;
4 import jalview.ws.params.InvalidArgumentException;
5
6 import java.io.IOError;
7 import java.rmi.ServerError;
8
9 public interface TreeResultI
10 {
11
12   public NJTree getTreeFor(JobId jobId)
13           throws InvalidArgumentException, ServerError, IOError;
14 }