Add new operation to the ProteoCache WS
[proteocache.git] / server / compbio / ws / jpred / jaxws / FindSequence.java
index d1b23d2..76195e8 100644 (file)
@@ -1,3 +1,4 @@
+
 package compbio.ws.jpred.jaxws;
 
 import javax.xml.bind.annotation.XmlAccessType;
@@ -8,71 +9,72 @@ import javax.xml.bind.annotation.XmlType;
 
 @XmlRootElement(name = "findSequence", namespace = "http://server.proteocache.ws")
 @XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "findSequence", namespace = "http://server.proteocache.ws", propOrder = { "sequence", "program", "version" })
+@XmlType(name = "findSequence", namespace = "http://server.proteocache.ws", propOrder = {
+    "sequence",
+    "program",
+    "version"
+})
 public class FindSequence {
 
-       @XmlElement(name = "sequence", namespace = "")
-       private String sequence;
-       @XmlElement(name = "program", namespace = "")
-       private String program;
-       @XmlElement(name = "version", namespace = "")
-       private String version;
+    @XmlElement(name = "sequence", namespace = "")
+    private String sequence;
+    @XmlElement(name = "program", namespace = "")
+    private String program;
+    @XmlElement(name = "version", namespace = "")
+    private String version;
 
-       /**
-        * 
-        * @return returns String
-        */
-       public String getSequence() {
-               System.out.println("FindSequence.setSequence: output sequence " + this.sequence);
-               return this.sequence;
-       }
+    /**
+     * 
+     * @return
+     *     returns String
+     */
+    public String getSequence() {
+        return this.sequence;
+    }
 
-       /**
-        * 
-        * @param sequence
-        *            the value for the sequence property
-        */
-       public void setSequence(String sequence) {
-               System.out.println("FindSequence.setSequence: input sequence " + sequence);
-               this.sequence = sequence;
-       }
+    /**
+     * 
+     * @param sequence
+     *     the value for the sequence property
+     */
+    public void setSequence(String sequence) {
+        this.sequence = sequence;
+    }
 
-       /**
-        * 
-        * @return returns String
-        */
-       public String getProgram() {
-               System.out.println("FindSequence.setProgram: output program " + this.program);
-               return this.program;
-       }
+    /**
+     * 
+     * @return
+     *     returns String
+     */
+    public String getProgram() {
+        return this.program;
+    }
 
-       /**
-        * 
-        * @param program
-        *            the value for the program property
-        */
-       public void setProgram(String program) {
-               System.out.println("FindSequence.setProgram: input program " + program);
-               this.program = program;
-       }
+    /**
+     * 
+     * @param program
+     *     the value for the program property
+     */
+    public void setProgram(String program) {
+        this.program = program;
+    }
 
-       /**
-        * 
-        * @return returns String
-        */
-       public String getVersion() {
-               System.out.println("FindSequence.setVersion: output version " + this.version);
-               return this.version;
-       }
+    /**
+     * 
+     * @return
+     *     returns String
+     */
+    public String getVersion() {
+        return this.version;
+    }
 
-       /**
-        * 
-        * @param version
-        *            the value for the version property
-        */
-       public void setVersion(String version) {
-               System.out.println("FindSequence.setVersion: input version " + version);
-               this.version = version;
-       }
+    /**
+     * 
+     * @param version
+     *     the value for the version property
+     */
+    public void setVersion(String version) {
+        this.version = version;
+    }
 
 }