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

com.hubject.datex.energyinfrastructure.generated.facilities.RateTable Maven / Gradle / Ivy

Go to download

Use converters from com.hubject.datex.convert.converters package to convert from the OICP formats to DATEX II TablePublication and StatusPublication.

There is a newer version: 1.0.2
Show newest version
//
// 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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.Duration;
import javax.xml.datatype.XMLGregorianCalendar;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
import com.hubject.datex.energyinfrastructure.generated.common.MultilingualString;


/**
 * 

Java class for RateTable complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="RateTable">
 *   <complexContent>
 *     <extension base="{http://datex2.eu/schema/3/facilities}Rates">
 *       <sequence>
 *         <element name="lastUpdated" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
 *         <element name="rateTableName" type="{http://datex2.eu/schema/3/common}MultilingualString" minOccurs="0"/>
 *         <element name="activeTimes" type="{http://datex2.eu/schema/3/facilities}Duration" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="availability" type="{http://datex2.eu/schema/3/facilities}_RateAvailabilityTypeEnum" minOccurs="0"/>
 *         <element name="rateResponsibleParty" type="{http://datex2.eu/schema/3/facilities}_OrganisationVersionedReference" minOccurs="0"/>
 *         <element name="rateSupersedeLink" type="{http://datex2.eu/schema/3/facilities}_RateTableVersionedReference" minOccurs="0"/>
 *         <element name="validation" type="{http://datex2.eu/schema/3/common}Boolean" minOccurs="0"/>
 *         <element name="rateType" type="{http://datex2.eu/schema/3/facilities}_RateTypeEnum" minOccurs="0"/>
 *         <element name="validityStart" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
 *         <element name="validityEnd" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
 *         <element name="additionalInformation" type="{http://datex2.eu/schema/3/common}Url" minOccurs="0"/>
 *         <element name="rateLineCollection" type="{http://datex2.eu/schema/3/facilities}RateLineCollection" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="rateEligibility" type="{http://datex2.eu/schema/3/facilities}RateEligibility" minOccurs="0"/>
 *         <element name="_rateTableExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RateTable", propOrder = { "lastUpdated", "rateTableName", "activeTimes", "availability", "rateResponsibleParty", "rateSupersedeLink", "validation", "rateType", "validityStart", "validityEnd", "additionalInformation", "rateLineCollection", "rateEligibility", "rateTableExtension" }) public class RateTable extends Rates { @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastUpdated; protected MultilingualString rateTableName; protected List activeTimes; protected RateAvailabilityTypeEnum availability; protected OrganisationVersionedReference rateResponsibleParty; protected RateTableVersionedReference rateSupersedeLink; protected Boolean validation; protected RateTypeEnum rateType; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar validityStart; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar validityEnd; @XmlSchemaType(name = "anyURI") protected String additionalInformation; protected List rateLineCollection; protected RateEligibility rateEligibility; @XmlElement(name = "_rateTableExtension") protected ExtensionType rateTableExtension; @XmlAttribute(name = "id", required = true) protected String id; @XmlAttribute(name = "version", required = true) protected String version; /** * Gets the value of the lastUpdated property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastUpdated() { return lastUpdated; } /** * Sets the value of the lastUpdated property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastUpdated(XMLGregorianCalendar value) { this.lastUpdated = value; } /** * Gets the value of the rateTableName property. * * @return * possible object is * {@link MultilingualString } * */ public MultilingualString getRateTableName() { return rateTableName; } /** * Sets the value of the rateTableName property. * * @param value * allowed object is * {@link MultilingualString } * */ public void setRateTableName(MultilingualString value) { this.rateTableName = value; } /** * Gets the value of the activeTimes property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the activeTimes property. * *

* For example, to add a new item, do as follows: *

     *    getActiveTimes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Duration } * * */ public List getActiveTimes() { if (activeTimes == null) { activeTimes = new ArrayList(); } return this.activeTimes; } /** * Gets the value of the availability property. * * @return * possible object is * {@link RateAvailabilityTypeEnum } * */ public RateAvailabilityTypeEnum getAvailability() { return availability; } /** * Sets the value of the availability property. * * @param value * allowed object is * {@link RateAvailabilityTypeEnum } * */ public void setAvailability(RateAvailabilityTypeEnum value) { this.availability = value; } /** * Gets the value of the rateResponsibleParty property. * * @return * possible object is * {@link OrganisationVersionedReference } * */ public OrganisationVersionedReference getRateResponsibleParty() { return rateResponsibleParty; } /** * Sets the value of the rateResponsibleParty property. * * @param value * allowed object is * {@link OrganisationVersionedReference } * */ public void setRateResponsibleParty(OrganisationVersionedReference value) { this.rateResponsibleParty = value; } /** * Gets the value of the rateSupersedeLink property. * * @return * possible object is * {@link RateTableVersionedReference } * */ public RateTableVersionedReference getRateSupersedeLink() { return rateSupersedeLink; } /** * Sets the value of the rateSupersedeLink property. * * @param value * allowed object is * {@link RateTableVersionedReference } * */ public void setRateSupersedeLink(RateTableVersionedReference value) { this.rateSupersedeLink = value; } /** * Gets the value of the validation property. * * @return * possible object is * {@link Boolean } * */ public Boolean isValidation() { return validation; } /** * Sets the value of the validation property. * * @param value * allowed object is * {@link Boolean } * */ public void setValidation(Boolean value) { this.validation = value; } /** * Gets the value of the rateType property. * * @return * possible object is * {@link RateTypeEnum } * */ public RateTypeEnum getRateType() { return rateType; } /** * Sets the value of the rateType property. * * @param value * allowed object is * {@link RateTypeEnum } * */ public void setRateType(RateTypeEnum value) { this.rateType = value; } /** * Gets the value of the validityStart property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getValidityStart() { return validityStart; } /** * Sets the value of the validityStart property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setValidityStart(XMLGregorianCalendar value) { this.validityStart = value; } /** * Gets the value of the validityEnd property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getValidityEnd() { return validityEnd; } /** * Sets the value of the validityEnd property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setValidityEnd(XMLGregorianCalendar value) { this.validityEnd = value; } /** * Gets the value of the additionalInformation property. * * @return * possible object is * {@link String } * */ public String getAdditionalInformation() { return additionalInformation; } /** * Sets the value of the additionalInformation property. * * @param value * allowed object is * {@link String } * */ public void setAdditionalInformation(String value) { this.additionalInformation = value; } /** * Gets the value of the rateLineCollection property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the rateLineCollection property. * *

* For example, to add a new item, do as follows: *

     *    getRateLineCollection().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link RateLineCollection } * * */ public List getRateLineCollection() { if (rateLineCollection == null) { rateLineCollection = new ArrayList(); } return this.rateLineCollection; } /** * Gets the value of the rateEligibility property. * * @return * possible object is * {@link RateEligibility } * */ public RateEligibility getRateEligibility() { return rateEligibility; } /** * Sets the value of the rateEligibility property. * * @param value * allowed object is * {@link RateEligibility } * */ public void setRateEligibility(RateEligibility value) { this.rateEligibility = value; } /** * Gets the value of the rateTableExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getRateTableExtension() { return rateTableExtension; } /** * Sets the value of the rateTableExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setRateTableExtension(ExtensionType value) { this.rateTableExtension = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy