JAL-3807 - Re-implement results processing.
[jalview.git] / src / jalview / ws / api / JPredMutlipleAlignmentServiceI.java
index 261f1f8..f897140 100644 (file)
@@ -4,10 +4,13 @@ import java.util.List;
 
 import jalview.datamodel.AlignmentI;
 import jalview.datamodel.SequenceI;
+import jalview.io.JPredFile;
 
 public interface JPredMutlipleAlignmentServiceI extends JalviewWebServiceI
 {
   public JobId align(List<SequenceI> sequences) throws Throwable;
-  
-  public AlignmentI getResult(JobId jobId) throws Exception;
+
+  public AlignmentI getAlignment(JobId jobId) throws Exception;
+
+  public JPredFile getPrediction(JobId jobId) throws Exception;
 }