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

ch.hsr.mas.oms.domain.dto.IndicatorResponse 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "indicator"
})
@XmlRootElement(name = "indicatorResponse")
public class IndicatorResponse {

    private List indicator;

    public List getIndicator() {
        if (indicator == null) {
            indicator = new ArrayList();
        }
        return this.indicator;
    }

	public void setIndicator(List indicator) {
		this.indicator = indicator;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy