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   * This was generated by "wsgen" and is copied to add "nillable=true" to the details collection.
11   * No other modifications were made to this wrapper and it can be removed as soon as JAX-WS offers
12   * the definition of "nillable" @WebResults.
13   * <p/>
14   * (removing requires also the removal of the corresponding @ResponseWrapper annotation)
15   *
16   * @author Juergen_Kellerer, 2011-03-30
17   * @version 1.0
18   */
19  @XmlAccessorType(XmlAccessType.FIELD)
20  @XmlType(name = "getJobsResponse", namespace = Level0Constants.NAMESPACE)
21  @XmlRootElement(name = "getJobsResponse", namespace = Level0Constants.NAMESPACE)
22  public class GetJobsResponse {
23  
24  	@XmlElement(name = "job", namespace = "", nillable = true)
25  	private Collection<Job> job;
26  
27  	public Collection<Job> getJob() {
28  		return job;
29  	}
30  
31  	public void setJob(Collection<Job> job) {
32  		this.job = job;
33  	}
34  }