![JAR search and dependency download from the Maven repository](/logo.png)
ch.hsr.mas.oms.domain.dto.IndicatorRequest Maven / Gradle / Ivy
package ch.hsr.mas.oms.domain.dto;
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 = {
"symbol",
"indicatorType",
"startDate",
"endDate"
})
@XmlRootElement(name = "indicatorRequest")
public class IndicatorRequest {
@XmlElement(required = true)
protected String symbol;
@XmlElement(required = true)
protected String indicatorType;
@XmlElement(required = true)
protected String startDate;
@XmlElement(required = true)
protected String endDate;
public String getSymbol() {
return symbol;
}
public void setSymbol(String symbol) {
this.symbol = symbol;
}
public String getIndicatorType() {
return indicatorType;
}
public void setIndicatorType(String indicatorType) {
this.indicatorType = indicatorType;
}
public String getStartDate() {
return startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy