1 package com.trendmicro.grid.acl.l0.wrappers;
2
3 import com.trendmicro.grid.acl.l0.Level0Constants;
4 import com.trendmicro.grid.acl.l0.datatypes.Job;
5
6 import javax.xml.bind.annotation.*;
7 import java.util.Collection;
8
9
10
11
12
13
14
15
16
17
18
19 @XmlAccessorType(XmlAccessType.FIELD)
20 @XmlType(name = "getJobStatesResponse", namespace = Level0Constants.NAMESPACE)
21 @XmlRootElement(name = "getJobStatesResponse", namespace = Level0Constants.NAMESPACE)
22 public class GetJobStatesResponse {
23
24 @XmlElement(name = "jobState", namespace = "", nillable = true)
25 private Collection<Job.State> jobState;
26
27 public Collection<Job.State> getJobState() {
28 return jobState;
29 }
30
31 public void setJobState(Collection<Job.State> jobState) {
32 this.jobState = jobState;
33 }
34 }