Subversion Repositories XServices

Compare Revisions

Ignore whitespace Rev 109 → Rev 108

/xservices/trunk/src/java/net/brutex/xservices/ws/rs/FileListType.java
2,20 → 2,17
 
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
 
@XmlRootElement(name="FileList")
public class FileListType
{
public class FileListType {
 
@XmlElement
public String name;
@XmlElement
public String name;
public FileListType(){};
public FileListType(String name) {
this.name = name;
}
 
public FileListType()
{
}
 
public FileListType(String name)
{
this.name = name;
}
}
}