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.FileInformation;
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 = "getFileInformationListResponse", namespace = Level0Constants.NAMESPACE)
21 @XmlRootElement(name = "getFileInformationListResponse", namespace = Level0Constants.NAMESPACE)
22 public class GetFileInformationListResponse {
23
24 @XmlElement(name = "information", namespace = "", nillable = true)
25 private Collection<FileInformation> information;
26
27 public Collection<FileInformation> getInformation() {
28 return information;
29 }
30
31 public void setInformation(Collection<FileInformation> information) {
32 this.information = information;
33 }
34 }