Subversion Repositories XServices

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

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;
        }

}