bf18a1cf582c1ae6aeffdde8cb2a2c83852e1050
[jalview.git] / src / ext / vamsas / MuscleWS.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6)
3  * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
10  * 
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 /*
19  * Jalview - A Sequence Alignment Editor and Viewer
20  * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
21  *
22  * This program is free software; you can redistribute it and/or
23  * modify it under the terms of the GNU General Public License
24  * as published by the Free Software Foundation; either version 2
25  * of the License, or (at your option) any later version.
26  *
27  * This program is distributed in the hope that it will be useful,
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30  * GNU General Public License for more details.
31  *
32  * You should have received a copy of the GNU General Public License
33  * along with this program; if not, write to the Free Software
34  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
35  */
36 package ext.vamsas;
37
38 public interface MuscleWS extends java.rmi.Remote
39 {
40   public vamsas.objects.simple.WsJobId align(
41           vamsas.objects.simple.SequenceSet seqSet)
42           throws java.rmi.RemoteException;
43
44   public vamsas.objects.simple.Alignment getalign(java.lang.String job_id)
45           throws java.rmi.RemoteException;
46
47   public vamsas.objects.simple.MsaResult getResult(java.lang.String job_id)
48           throws java.rmi.RemoteException;
49
50   public vamsas.objects.simple.WsJobId cancel(java.lang.String jobId)
51           throws java.rmi.RemoteException;
52 }