com.hubject.datex.energyinfrastructure.generated.facilities.Eligibility 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.XmlType;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
import com.hubject.datex.energyinfrastructure.generated.common.MultilingualString;
/**
* Java class for Eligibility complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Eligibility">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="eligibilityName" type="{http://datex2.eu/schema/3/common}MultilingualString" minOccurs="0"/>
* <element name="description" type="{http://datex2.eu/schema/3/common}MultilingualString" minOccurs="0"/>
* <element name="qualification" type="{http://datex2.eu/schema/3/facilities}Qualification" maxOccurs="unbounded" minOccurs="0"/>
* <element name="_eligibilityExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Eligibility", propOrder = {
"eligibilityName",
"description",
"qualification",
"eligibilityExtension"
})
public class Eligibility {
protected MultilingualString eligibilityName;
protected MultilingualString description;
protected List qualification;
@XmlElement(name = "_eligibilityExtension")
protected ExtensionType eligibilityExtension;
/**
* Gets the value of the eligibilityName property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getEligibilityName() {
return eligibilityName;
}
/**
* Sets the value of the eligibilityName property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setEligibilityName(MultilingualString value) {
this.eligibilityName = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setDescription(MultilingualString value) {
this.description = value;
}
/**
* Gets the value of the qualification 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 qualification property.
*
*
* For example, to add a new item, do as follows:
*
* getQualification().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Qualification }
*
*
*/
public List getQualification() {
if (qualification == null) {
qualification = new ArrayList();
}
return this.qualification;
}
/**
* Gets the value of the eligibilityExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getEligibilityExtension() {
return eligibilityExtension;
}
/**
* Sets the value of the eligibilityExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setEligibilityExtension(ExtensionType value) {
this.eligibilityExtension = value;
}
}