de.sekmi.li2b2.hive.pm.UserProject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of li2b2-xml Show documentation
Show all versions of li2b2-xml Show documentation
Message structures and code for parsing.
Used by client and server.
package de.sekmi.li2b2.hive.pm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name="project")
@XmlAccessorType(XmlAccessType.FIELD)
public class UserProject {
@XmlAttribute
public String id;
public String name;
public String wiki;
public String description;
public String path;
public String[] role;
@XmlElement(name="param")
// TODO allow list of parameters Lalala
public Param[] params;
}