com.hubject.datex.energyinfrastructure.generated.facilities.Rates Maven / Gradle / Ivy
Show all versions of convert Show documentation
//
// 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.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
import com.hubject.datex.energyinfrastructure.generated.common.OverallPeriod;
import com.hubject.datex.energyinfrastructure.generated.infrastructure.EnergyPricingPolicy;
/**
* Java class for Rates complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Rates">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="applicableCurrency" type="{http://datex2.eu/schema/3/facilities}CurrencyCode" maxOccurs="unbounded" minOccurs="0"/>
* <element name="paymentMethod" type="{http://datex2.eu/schema/3/facilities}PaymentMethod" minOccurs="0"/>
* <element name="overallPeriod" type="{http://datex2.eu/schema/3/common}OverallPeriod" minOccurs="0"/>
* <element name="energyPricingPolicy" type="{http://datex2.eu/schema/3/energyInfrastructure}EnergyPricingPolicy" minOccurs="0"/>
* <element name="_ratesExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Rates", propOrder = {
"applicableCurrency",
"paymentMethod",
"overallPeriod",
"energyPricingPolicy",
"ratesExtension"
})
@XmlSeeAlso({
FreeOfCharge.class,
GeneralRateInformation.class,
RatesByReference.class,
RateTable.class,
UnknownRates.class,
UnspecifiedRates.class
})
public abstract class Rates {
protected List applicableCurrency;
protected PaymentMethod paymentMethod;
protected OverallPeriod overallPeriod;
protected EnergyPricingPolicy energyPricingPolicy;
@XmlElement(name = "_ratesExtension")
protected ExtensionType ratesExtension;
/**
* Gets the value of the applicableCurrency 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 applicableCurrency property.
*
*
* For example, to add a new item, do as follows:
*
* getApplicableCurrency().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getApplicableCurrency() {
if (applicableCurrency == null) {
applicableCurrency = new ArrayList();
}
return this.applicableCurrency;
}
/**
* Gets the value of the paymentMethod property.
*
* @return
* possible object is
* {@link PaymentMethod }
*
*/
public PaymentMethod getPaymentMethod() {
return paymentMethod;
}
/**
* Sets the value of the paymentMethod property.
*
* @param value
* allowed object is
* {@link PaymentMethod }
*
*/
public void setPaymentMethod(PaymentMethod value) {
this.paymentMethod = value;
}
/**
* Gets the value of the overallPeriod property.
*
* @return
* possible object is
* {@link OverallPeriod }
*
*/
public OverallPeriod getOverallPeriod() {
return overallPeriod;
}
/**
* Sets the value of the overallPeriod property.
*
* @param value
* allowed object is
* {@link OverallPeriod }
*
*/
public void setOverallPeriod(OverallPeriod value) {
this.overallPeriod = value;
}
/**
* Gets the value of the energyPricingPolicy property.
*
* @return
* possible object is
* {@link EnergyPricingPolicy }
*
*/
public EnergyPricingPolicy getEnergyPricingPolicy() {
return energyPricingPolicy;
}
/**
* Sets the value of the energyPricingPolicy property.
*
* @param value
* allowed object is
* {@link EnergyPricingPolicy }
*
*/
public void setEnergyPricingPolicy(EnergyPricingPolicy value) {
this.energyPricingPolicy = value;
}
/**
* Gets the value of the ratesExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getRatesExtension() {
return ratesExtension;
}
/**
* Sets the value of the ratesExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setRatesExtension(ExtensionType value) {
this.ratesExtension = value;
}
}