Subversion Repositories XServices

Rev

Go to most recent revision | Details | 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
import javax.xml.bind.annotation.XmlType;
6
 
7
@XmlRootElement(name="FileList")
8
public class FileListType {
9
 
10
	@XmlElement
11
	public String name;
12
 
13
	public FileListType(){};
14
	public FileListType(String name) {
15
		this.name = name;
16
	}
17
 
18
}