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.FileIdentifier;
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 = "getPackageFileIdentifiersByNameResponse", namespace = Level0Constants.NAMESPACE)
21  @XmlRootElement(name = "getPackageFileIdentifiersByNameResponse", namespace = Level0Constants.NAMESPACE)
22  public class GetPackageFileIdentifiersByNameResponse {
23  
24  	@XmlElement(name = "packageFileId", namespace = "", nillable = true)
25  	private Collection<FileIdentifier> packageFileId;
26  
27  	public Collection<FileIdentifier> getPackageFileId() {
28  		return packageFileId;
29  	}
30  
31  	public void setPackageFileId(Collection<FileIdentifier> packageFileId) {
32  		this.packageFileId = packageFileId;
33  	}
34  }