com.hubject.datex.energyinfrastructure.generated.facilities.RelativeTimeRates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convert Show documentation
Show all versions of convert Show documentation
Use converters from com.hubject.datex.convert.converters package to convert from the OICP formats to DATEX II TablePublication and StatusPublication.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.06 at 11:44:34 AM CEST
//
package com.hubject.datex.energyinfrastructure.generated.facilities;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
/**
* Java class for RelativeTimeRates complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RelativeTimeRates">
* <complexContent>
* <extension base="{http://datex2.eu/schema/3/facilities}RateLineCollection">
* <sequence>
* <element name="referenceTimeStart" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
* <element name="referenceTimeEnd" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
* <element name="_relativeTimeRatesExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RelativeTimeRates", propOrder = {
"referenceTimeStart",
"referenceTimeEnd",
"relativeTimeRatesExtension"
})
public class RelativeTimeRates
extends RateLineCollection
{
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar referenceTimeStart;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar referenceTimeEnd;
@XmlElement(name = "_relativeTimeRatesExtension")
protected ExtensionType relativeTimeRatesExtension;
/**
* Gets the value of the referenceTimeStart property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getReferenceTimeStart() {
return referenceTimeStart;
}
/**
* Sets the value of the referenceTimeStart property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setReferenceTimeStart(XMLGregorianCalendar value) {
this.referenceTimeStart = value;
}
/**
* Gets the value of the referenceTimeEnd property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getReferenceTimeEnd() {
return referenceTimeEnd;
}
/**
* Sets the value of the referenceTimeEnd property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setReferenceTimeEnd(XMLGregorianCalendar value) {
this.referenceTimeEnd = value;
}
/**
* Gets the value of the relativeTimeRatesExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getRelativeTimeRatesExtension() {
return relativeTimeRatesExtension;
}
/**
* Sets the value of the relativeTimeRatesExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setRelativeTimeRatesExtension(ExtensionType value) {
this.relativeTimeRatesExtension = value;
}
}