Subversion Repositories XServices

Rev

Rev 92 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
92 brianR 1
package net.brutex.xservices.ws.rs;
2
 
3
import javax.xml.bind.annotation.XmlElement;
4
import javax.xml.bind.annotation.XmlRootElement;
5
 
6
@XmlRootElement(name="FileList")
109 brianR 7
public class FileListType
8
{
92 brianR 9
 
109 brianR 10
  @XmlElement
11
  public String name;
92 brianR 12
 
109 brianR 13
  public FileListType()
14
  {
15
  }
16
 
17
  public FileListType(String name)
18
  {
19
    this.name = name;
20
  }
21
}