Merge branch 'DAO'
[proteocache.git] / server / compbio / ws / jpred / jaxws / GetArchive.java
1
2 package compbio.ws.jpred.jaxws;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9
10 @XmlRootElement(name = "getArchive", namespace = "http://server.proteocache.ws")
11 @XmlAccessorType(XmlAccessType.FIELD)
12 @XmlType(name = "getArchive", namespace = "http://server.proteocache.ws")
13 public class GetArchive {
14
15     @XmlElement(name = "job", namespace = "")
16     private String job;
17
18     /**
19      * 
20      * @return
21      *     returns String
22      */
23     public String getJob() {
24         return this.job;
25     }
26
27     /**
28      * 
29      * @param job
30      *     the value for the job property
31      */
32     public void setJob(String job) {
33         this.job = job;
34     }
35
36 }