All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.hsr.mas.oms.domain.dto.Indicator Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy