com.hubject.datex.energyinfrastructure.generated.facilities.OrganisationSpecification 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.XmlAttribute;
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;
import com.hubject.datex.energyinfrastructure.generated.common.MultilingualString;
/**
* Java class for OrganisationSpecification complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OrganisationSpecification">
* <complexContent>
* <extension base="{http://datex2.eu/schema/3/facilities}Organisation">
* <sequence>
* <element name="lastUpdated" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
* <element name="name" type="{http://datex2.eu/schema/3/common}MultilingualString"/>
* <element name="externalCode" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
* <element name="legalName" type="{http://datex2.eu/schema/3/common}MultilingualString" minOccurs="0"/>
* <element name="linkToGeneralInformation" type="{http://datex2.eu/schema/3/common}Url" minOccurs="0"/>
* <element name="nationalOrganisationNumber" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
* <element name="nationalRegister" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
* <element name="vatIdentificationNumber" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
* <element name="organisationUnit" type="{http://datex2.eu/schema/3/facilities}OrganisationUnit" maxOccurs="unbounded"/>
* <element name="subOrganisation" type="{http://datex2.eu/schema/3/facilities}Organisation" maxOccurs="unbounded" minOccurs="0"/>
* <element name="_organisationSpecificationExtension" 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 = "OrganisationSpecification", propOrder = {
"lastUpdated",
"name",
"externalCode",
"legalName",
"linkToGeneralInformation",
"nationalOrganisationNumber",
"nationalRegister",
"vatIdentificationNumber",
"organisationUnit",
"subOrganisation",
"organisationSpecificationExtension"
})
public class OrganisationSpecification
extends Organisation
{
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastUpdated;
@XmlElement(required = true)
protected MultilingualString name;
protected String externalCode;
protected MultilingualString legalName;
@XmlSchemaType(name = "anyURI")
protected String linkToGeneralInformation;
protected String nationalOrganisationNumber;
protected String nationalRegister;
protected String vatIdentificationNumber;
@XmlElement(required = true)
protected List organisationUnit;
protected List subOrganisation;
@XmlElement(name = "_organisationSpecificationExtension")
protected ExtensionType organisationSpecificationExtension;
@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 name property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setName(MultilingualString value) {
this.name = value;
}
/**
* Gets the value of the externalCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExternalCode() {
return externalCode;
}
/**
* Sets the value of the externalCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExternalCode(String value) {
this.externalCode = value;
}
/**
* Gets the value of the legalName property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getLegalName() {
return legalName;
}
/**
* Sets the value of the legalName property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setLegalName(MultilingualString value) {
this.legalName = value;
}
/**
* Gets the value of the linkToGeneralInformation property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLinkToGeneralInformation() {
return linkToGeneralInformation;
}
/**
* Sets the value of the linkToGeneralInformation property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLinkToGeneralInformation(String value) {
this.linkToGeneralInformation = value;
}
/**
* Gets the value of the nationalOrganisationNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNationalOrganisationNumber() {
return nationalOrganisationNumber;
}
/**
* Sets the value of the nationalOrganisationNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNationalOrganisationNumber(String value) {
this.nationalOrganisationNumber = value;
}
/**
* Gets the value of the nationalRegister property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNationalRegister() {
return nationalRegister;
}
/**
* Sets the value of the nationalRegister property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNationalRegister(String value) {
this.nationalRegister = value;
}
/**
* Gets the value of the vatIdentificationNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVatIdentificationNumber() {
return vatIdentificationNumber;
}
/**
* Sets the value of the vatIdentificationNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVatIdentificationNumber(String value) {
this.vatIdentificationNumber = value;
}
/**
* Gets the value of the organisationUnit 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 organisationUnit property.
*
*
* For example, to add a new item, do as follows:
*
* getOrganisationUnit().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OrganisationUnit }
*
*
*/
public List getOrganisationUnit() {
if (organisationUnit == null) {
organisationUnit = new ArrayList();
}
return this.organisationUnit;
}
/**
* Gets the value of the subOrganisation 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 subOrganisation property.
*
*
* For example, to add a new item, do as follows:
*
* getSubOrganisation().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Organisation }
*
*
*/
public List getSubOrganisation() {
if (subOrganisation == null) {
subOrganisation = new ArrayList();
}
return this.subOrganisation;
}
/**
* Gets the value of the organisationSpecificationExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getOrganisationSpecificationExtension() {
return organisationSpecificationExtension;
}
/**
* Sets the value of the organisationSpecificationExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setOrganisationSpecificationExtension(ExtensionType value) {
this.organisationSpecificationExtension = 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;
}
}