ch.hsr.mas.oms.domain.dto.Indicator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oms-api Show documentation
Show all versions of oms-api Show documentation
Order Management System - Client Stubs
The newest version!
package ch.hsr.mas.oms.domain.dto;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"indicatorType",
"date",
"annotation"
})
@XmlRootElement(name = "indicator")
public class Indicator {
@XmlElement(required = true)
protected String indicatorType;
@XmlElement(required = true)
protected String date;
private List annotation;
public String getIndicatorType() {
return indicatorType;
}
public void setIndicatorType(String indicatorType) {
this.indicatorType = indicatorType;
}
public String getDate() {
return date;
}
public void setDate(String value) {
this.date = value;
}
public List getAnnotation() {
if (annotation == null) {
annotation = new ArrayList();
}
return this.annotation;
}
public void setAnnotation(List annotation) {
this.annotation = annotation;
}
}