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.CategoryView;
5   
6   import javax.xml.bind.annotation.*;
7   import java.util.List;
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 = "getCategoryViewsResponse", namespace = Level0Constants.NAMESPACE)
21  @XmlRootElement(name = "getCategoryViewsResponse", namespace = Level0Constants.NAMESPACE)
22  public class GetCategoryViewsResponse {
23  
24  	@XmlElement(name = "view", namespace = "", nillable = true)
25  	private List<CategoryView> view;
26  
27  	public List<CategoryView> getView() {
28  		return view;
29  	}
30  
31  	public void setView(List<CategoryView> view) {
32  		this.view = view;
33  	}
34  }