First working web service for quering proteocache DB
[proteocache.git] / webapp / compbio / ws / jpred / jaxws / FindSequenceResponse.java
diff --git a/webapp/compbio/ws/jpred/jaxws/FindSequenceResponse.java b/webapp/compbio/ws/jpred/jaxws/FindSequenceResponse.java
deleted file mode 100644 (file)
index b53fb20..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 = "findSequenceResponse", namespace = "http://server.ws.compbio")
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "findSequenceResponse", namespace = "http://server.ws.compbio")
-public class FindSequenceResponse {
-
-    @XmlElement(name = "return", namespace = "")
-    private String _return;
-
-    /**
-     * 
-     * @return
-     *     returns String
-     */
-    public String getReturn() {
-        return this._return;
-    }
-
-    /**
-     * 
-     * @param _return
-     *     the value for the _return property
-     */
-    public void setReturn(String _return) {
-        this._return = _return;
-    }
-
-}