net.finmath.smartcontract.product.xml.WeatherIndexData Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.12.05 at 10:53:57 AM CET
//
package net.finmath.smartcontract.product.xml;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for WeatherIndexData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WeatherIndexData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="referenceLevel" type="{http://www.fpml.org/FpML-5/confirmation}ReferenceLevel"/>
* <element name="dataProvider" type="{http://www.fpml.org/FpML-5/confirmation}DataProvider"/>
* <element name="finalEditedData" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="weatherStation" type="{http://www.fpml.org/FpML-5/confirmation}WeatherStation"/>
* <element name="weatherStationFallback" type="{http://www.fpml.org/FpML-5/confirmation}WeatherStation"/>
* <element name="weatherStationSecondFallback" type="{http://www.fpml.org/FpML-5/confirmation}WeatherStation"/>
* <element name="alternativeDataProvider" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="synopticDataFallback" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="adjustmentToFallbackWeatherStation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="primaryDisruptionFallbacks" type="{http://www.fpml.org/FpML-5/confirmation}DisruptionFallback" minOccurs="0"/>
* <element name="secondaryDisruptionFallbacks" type="{http://www.fpml.org/FpML-5/confirmation}DisruptionFallback" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WeatherIndexData", propOrder = {
"referenceLevel",
"dataProvider",
"finalEditedData",
"weatherStation",
"weatherStationFallback",
"weatherStationSecondFallback",
"alternativeDataProvider",
"synopticDataFallback",
"adjustmentToFallbackWeatherStation",
"primaryDisruptionFallbacks",
"secondaryDisruptionFallbacks"
})
public class WeatherIndexData {
@XmlElement(required = true)
protected ReferenceLevel referenceLevel;
@XmlElement(required = true)
protected DataProvider dataProvider;
protected boolean finalEditedData;
@XmlElement(required = true)
protected WeatherStation weatherStation;
@XmlElement(required = true)
protected WeatherStation weatherStationFallback;
@XmlElement(required = true)
protected WeatherStation weatherStationSecondFallback;
protected boolean alternativeDataProvider;
protected boolean synopticDataFallback;
protected Boolean adjustmentToFallbackWeatherStation;
protected DisruptionFallback primaryDisruptionFallbacks;
protected DisruptionFallback secondaryDisruptionFallbacks;
/**
* Gets the value of the referenceLevel property.
*
* @return
* possible object is
* {@link ReferenceLevel }
*
*/
public ReferenceLevel getReferenceLevel() {
return referenceLevel;
}
/**
* Sets the value of the referenceLevel property.
*
* @param value
* allowed object is
* {@link ReferenceLevel }
*
*/
public void setReferenceLevel(ReferenceLevel value) {
this.referenceLevel = value;
}
/**
* Gets the value of the dataProvider property.
*
* @return
* possible object is
* {@link DataProvider }
*
*/
public DataProvider getDataProvider() {
return dataProvider;
}
/**
* Sets the value of the dataProvider property.
*
* @param value
* allowed object is
* {@link DataProvider }
*
*/
public void setDataProvider(DataProvider value) {
this.dataProvider = value;
}
/**
* Gets the value of the finalEditedData property.
*
*/
public boolean isFinalEditedData() {
return finalEditedData;
}
/**
* Sets the value of the finalEditedData property.
*
*/
public void setFinalEditedData(boolean value) {
this.finalEditedData = value;
}
/**
* Gets the value of the weatherStation property.
*
* @return
* possible object is
* {@link WeatherStation }
*
*/
public WeatherStation getWeatherStation() {
return weatherStation;
}
/**
* Sets the value of the weatherStation property.
*
* @param value
* allowed object is
* {@link WeatherStation }
*
*/
public void setWeatherStation(WeatherStation value) {
this.weatherStation = value;
}
/**
* Gets the value of the weatherStationFallback property.
*
* @return
* possible object is
* {@link WeatherStation }
*
*/
public WeatherStation getWeatherStationFallback() {
return weatherStationFallback;
}
/**
* Sets the value of the weatherStationFallback property.
*
* @param value
* allowed object is
* {@link WeatherStation }
*
*/
public void setWeatherStationFallback(WeatherStation value) {
this.weatherStationFallback = value;
}
/**
* Gets the value of the weatherStationSecondFallback property.
*
* @return
* possible object is
* {@link WeatherStation }
*
*/
public WeatherStation getWeatherStationSecondFallback() {
return weatherStationSecondFallback;
}
/**
* Sets the value of the weatherStationSecondFallback property.
*
* @param value
* allowed object is
* {@link WeatherStation }
*
*/
public void setWeatherStationSecondFallback(WeatherStation value) {
this.weatherStationSecondFallback = value;
}
/**
* Gets the value of the alternativeDataProvider property.
*
*/
public boolean isAlternativeDataProvider() {
return alternativeDataProvider;
}
/**
* Sets the value of the alternativeDataProvider property.
*
*/
public void setAlternativeDataProvider(boolean value) {
this.alternativeDataProvider = value;
}
/**
* Gets the value of the synopticDataFallback property.
*
*/
public boolean isSynopticDataFallback() {
return synopticDataFallback;
}
/**
* Sets the value of the synopticDataFallback property.
*
*/
public void setSynopticDataFallback(boolean value) {
this.synopticDataFallback = value;
}
/**
* Gets the value of the adjustmentToFallbackWeatherStation property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAdjustmentToFallbackWeatherStation() {
return adjustmentToFallbackWeatherStation;
}
/**
* Sets the value of the adjustmentToFallbackWeatherStation property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAdjustmentToFallbackWeatherStation(Boolean value) {
this.adjustmentToFallbackWeatherStation = value;
}
/**
* Gets the value of the primaryDisruptionFallbacks property.
*
* @return
* possible object is
* {@link DisruptionFallback }
*
*/
public DisruptionFallback getPrimaryDisruptionFallbacks() {
return primaryDisruptionFallbacks;
}
/**
* Sets the value of the primaryDisruptionFallbacks property.
*
* @param value
* allowed object is
* {@link DisruptionFallback }
*
*/
public void setPrimaryDisruptionFallbacks(DisruptionFallback value) {
this.primaryDisruptionFallbacks = value;
}
/**
* Gets the value of the secondaryDisruptionFallbacks property.
*
* @return
* possible object is
* {@link DisruptionFallback }
*
*/
public DisruptionFallback getSecondaryDisruptionFallbacks() {
return secondaryDisruptionFallbacks;
}
/**
* Sets the value of the secondaryDisruptionFallbacks property.
*
* @param value
* allowed object is
* {@link DisruptionFallback }
*
*/
public void setSecondaryDisruptionFallbacks(DisruptionFallback value) {
this.secondaryDisruptionFallbacks = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy