Subversion Repositories XServices

Compare Revisions

Ignore whitespace Rev 108 → Rev 109

/xservices/trunk/src/java/net/brutex/xservices/ws/rs/FileListType.java
2,17 → 2,20
 
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;
public FileListType(){};
public FileListType(String name) {
this.name = name;
}
@XmlElement
public String name;
 
}
public FileListType()
{
}
 
public FileListType(String name)
{
this.name = name;
}
}