com.hubject.datex.energyinfrastructure.generated.facilities.RateEligibility 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.math.BigInteger;
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.XmlType;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
/**
* Java class for RateEligibility complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RateEligibility">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="priority" type="{http://datex2.eu/schema/3/common}Integer" minOccurs="0"/>
* <element name="combinable" type="{http://datex2.eu/schema/3/common}Boolean" minOccurs="0"/>
* <element name="rateDiscount" type="{http://datex2.eu/schema/3/facilities}RateDiscount" minOccurs="0"/>
* <element name="eligibility" type="{http://datex2.eu/schema/3/facilities}Eligibility"/>
* <element name="rightSpecification" type="{http://datex2.eu/schema/3/facilities}RightSpecification" maxOccurs="unbounded" minOccurs="0"/>
* <element name="_rateEligibilityExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RateEligibility", propOrder = {
"priority",
"combinable",
"rateDiscount",
"eligibility",
"rightSpecification",
"rateEligibilityExtension"
})
public class RateEligibility {
protected BigInteger priority;
protected Boolean combinable;
protected RateDiscount rateDiscount;
@XmlElement(required = true)
protected Eligibility eligibility;
protected List rightSpecification;
@XmlElement(name = "_rateEligibilityExtension")
protected ExtensionType rateEligibilityExtension;
/**
* Gets the value of the priority property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getPriority() {
return priority;
}
/**
* Sets the value of the priority property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setPriority(BigInteger value) {
this.priority = value;
}
/**
* Gets the value of the combinable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCombinable() {
return combinable;
}
/**
* Sets the value of the combinable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCombinable(Boolean value) {
this.combinable = value;
}
/**
* Gets the value of the rateDiscount property.
*
* @return
* possible object is
* {@link RateDiscount }
*
*/
public RateDiscount getRateDiscount() {
return rateDiscount;
}
/**
* Sets the value of the rateDiscount property.
*
* @param value
* allowed object is
* {@link RateDiscount }
*
*/
public void setRateDiscount(RateDiscount value) {
this.rateDiscount = value;
}
/**
* Gets the value of the eligibility property.
*
* @return
* possible object is
* {@link Eligibility }
*
*/
public Eligibility getEligibility() {
return eligibility;
}
/**
* Sets the value of the eligibility property.
*
* @param value
* allowed object is
* {@link Eligibility }
*
*/
public void setEligibility(Eligibility value) {
this.eligibility = value;
}
/**
* Gets the value of the rightSpecification 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 rightSpecification property.
*
*
* For example, to add a new item, do as follows:
*
* getRightSpecification().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RightSpecification }
*
*
*/
public List getRightSpecification() {
if (rightSpecification == null) {
rightSpecification = new ArrayList();
}
return this.rightSpecification;
}
/**
* Gets the value of the rateEligibilityExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getRateEligibilityExtension() {
return rateEligibilityExtension;
}
/**
* Sets the value of the rateEligibilityExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setRateEligibilityExtension(ExtensionType value) {
this.rateEligibilityExtension = value;
}
}