File: PullExecStatistics.java

package info (click to toggle)
libjaba-client-java 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 2,052 kB
  • sloc: java: 17,308; makefile: 12
file content (59 lines) | stat: -rw-r--r-- 1,333 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

package compbio.data.msa.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 = "pullExecStatistics", namespace = "http://msa.data.compbio/01/12/2010/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "pullExecStatistics", namespace = "http://msa.data.compbio/01/12/2010/", propOrder = {
    "jobId",
    "position"
})
public class PullExecStatistics {

    @XmlElement(name = "jobId", namespace = "")
    private String jobId;
    @XmlElement(name = "position", namespace = "")
    private long position;

    /**
     * 
     * @return
     *     returns String
     */
    public String getJobId() {
        return this.jobId;
    }

    /**
     * 
     * @param jobId
     *     the value for the jobId property
     */
    public void setJobId(String jobId) {
        this.jobId = jobId;
    }

    /**
     * 
     * @return
     *     returns long
     */
    public long getPosition() {
        return this.position;
    }

    /**
     * 
     * @param position
     *     the value for the position property
     */
    public void setPosition(long position) {
        this.position = position;
    }

}