Add new operation to the ProteoCache WS
[proteocache.git] / server / compbio / ws / jpred / Jpred.java
index cebac29..4b4a965 100644 (file)
@@ -6,7 +6,15 @@ import javax.jws.WebService;
 
 @WebService(targetNamespace = "http://server.proteocache.ws")
 public interface Jpred {
+
        @WebMethod
        public String findSequence(@WebParam(name = "sequence") String sequence, @WebParam(name = "program") String program,
                        @WebParam(name = "version") String version);
+
+       @WebMethod
+       public String findJobForSequence(@WebParam(name = "sequence") String sequence, @WebParam(name = "program") String program,
+                       @WebParam(name = "version") String version);
+
+       @WebMethod
+       public String getArchive(@WebParam(name = "job") String jobid);
 }