com.hubject.datex.energyinfrastructure.generated.facilities.ClosureInformation Maven / Gradle / Ivy
//
// 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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;
/**
* Java class for ClosureInformation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClosureInformation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="permananentlyClosed" type="{http://datex2.eu/schema/3/common}Boolean" minOccurs="0"/>
* <element name="temporarilyClosed" type="{http://datex2.eu/schema/3/common}Boolean" minOccurs="0"/>
* <element name="closedFrom" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
* <element name="temporarilyClosedUntil" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
* <element name="_closureInformationExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClosureInformation", propOrder = {
"permananentlyClosed",
"temporarilyClosed",
"closedFrom",
"temporarilyClosedUntil",
"closureInformationExtension"
})
public class ClosureInformation {
protected Boolean permananentlyClosed;
protected Boolean temporarilyClosed;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar closedFrom;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar temporarilyClosedUntil;
@XmlElement(name = "_closureInformationExtension")
protected ExtensionType closureInformationExtension;
/**
* Gets the value of the permananentlyClosed property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isPermananentlyClosed() {
return permananentlyClosed;
}
/**
* Sets the value of the permananentlyClosed property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPermananentlyClosed(Boolean value) {
this.permananentlyClosed = value;
}
/**
* Gets the value of the temporarilyClosed property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isTemporarilyClosed() {
return temporarilyClosed;
}
/**
* Sets the value of the temporarilyClosed property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTemporarilyClosed(Boolean value) {
this.temporarilyClosed = value;
}
/**
* Gets the value of the closedFrom property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getClosedFrom() {
return closedFrom;
}
/**
* Sets the value of the closedFrom property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setClosedFrom(XMLGregorianCalendar value) {
this.closedFrom = value;
}
/**
* Gets the value of the temporarilyClosedUntil property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTemporarilyClosedUntil() {
return temporarilyClosedUntil;
}
/**
* Sets the value of the temporarilyClosedUntil property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTemporarilyClosedUntil(XMLGregorianCalendar value) {
this.temporarilyClosedUntil = value;
}
/**
* Gets the value of the closureInformationExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getClosureInformationExtension() {
return closureInformationExtension;
}
/**
* Sets the value of the closureInformationExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setClosureInformationExtension(ExtensionType value) {
this.closureInformationExtension = value;
}
}