First working web service for quering proteocache DB
[proteocache.git] / webapp / compbio / ws / jpred / jaxws / FindSequence.java
diff --git a/webapp/compbio/ws/jpred/jaxws/FindSequence.java b/webapp/compbio/ws/jpred/jaxws/FindSequence.java
deleted file mode 100644 (file)
index 978ffeb..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-
-package compbio.ws.jpred.jaxws;
-
-import javax.xml.bind.annotation.XmlAccessType;
-import javax.xml.bind.annotation.XmlAccessorType;
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlRootElement;
-import javax.xml.bind.annotation.XmlType;
-
-@XmlRootElement(name = "findSequence", namespace = "http://server.ws.compbio")
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "findSequence", namespace = "http://server.ws.compbio")
-public class FindSequence {
-
-    @XmlElement(name = "sequence", namespace = "")
-    private String sequence;
-
-    /**
-     * 
-     * @return
-     *     returns String
-     */
-    public String getSequence() {
-        return this.sequence;
-    }
-
-    /**
-     * 
-     * @param sequence
-     *     the value for the sequence property
-     */
-    public void setSequence(String sequence) {
-        this.sequence = sequence;
-    }
-
-}