Subversion Repositories XServices

Rev

Rev 92 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 92 Rev 109
1
package net.brutex.xservices.ws.rs;
1
package net.brutex.xservices.ws.rs;
2
 
2
 
3
import javax.xml.bind.annotation.XmlElement;
3
import javax.xml.bind.annotation.XmlElement;
4
import javax.xml.bind.annotation.XmlRootElement;
4
import javax.xml.bind.annotation.XmlRootElement;
5
import javax.xml.bind.annotation.XmlType;
-
 
6
 
5
 
7
@XmlRootElement(name="FileList")
6
@XmlRootElement(name="FileList")
-
 
7
public class FileListType
8
public class FileListType {
8
{
9
 
9
 
10
	@XmlElement
-
 
11
	public String name;
-
 
12
	
-
 
13
	public FileListType(){};
-
 
14
	public FileListType(String name) {
-
 
-
 
10
  @XmlElement
-
 
11
  public String name;
-
 
12
 
-
 
13
  public FileListType()
-
 
14
  {
-
 
15
  }
-
 
16
 
-
 
17
  public FileListType(String name)
15
		this.name = name;
18
  {
16
	}
19
    this.name = name;
17
 
20
  }
18
}
21
}
-
 
22
 
-
 
23
Generated by GNU Enscript 1.6.5.90.
-
 
24
 
-
 
25