1   package com.trendmicro.grid.acl.l0.wrappers;
2   
3   import com.trendmicro.grid.acl.l0.Level0Constants;
4   
5   import javax.xml.bind.annotation.*;
6   import java.net.URL;
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 = "getRemoteTransferURLsResponse", namespace = Level0Constants.NAMESPACE)
21  @XmlRootElement(name = "getRemoteTransferURLsResponse", namespace = Level0Constants.NAMESPACE)
22  public class GetRemoteTransferURLsResponse {
23  
24  	@XmlElement(name = "transferURL", namespace = "", nillable = true)
25  	private List<URL> transferURL;
26  
27  	public List<URL> getTransferURL() {
28  		return transferURL;
29  	}
30  
31  	public void setTransferURL(List<URL> transferURL) {
32  		this.transferURL = transferURL;
33  	}
34  }