Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 91 → Rev 92

/xservices/trunk/src/java/net/brutex/xservices/ws/rs/FileListType.java
0,0 → 1,18
package net.brutex.xservices.ws.rs;
 
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
 
@XmlRootElement(name="FileList")
public class FileListType {
 
@XmlElement
public String name;
public FileListType(){};
public FileListType(String name) {
this.name = name;
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property