com.hubject.datex.energyinfrastructure.generated.exchangeinformation.SessionInformation 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.exchangeinformation;
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 SessionInformation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SessionInformation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sessionID" type="{http://datex2.eu/schema/3/common}String"/>
* <element name="startSession" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
* <element name="_sessionInformationExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SessionInformation", propOrder = {
"sessionID",
"startSession",
"sessionInformationExtension"
})
public class SessionInformation {
@XmlElement(required = true)
protected String sessionID;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar startSession;
@XmlElement(name = "_sessionInformationExtension")
protected ExtensionType sessionInformationExtension;
/**
* Gets the value of the sessionID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionID() {
return sessionID;
}
/**
* Sets the value of the sessionID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionID(String value) {
this.sessionID = value;
}
/**
* Gets the value of the startSession property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getStartSession() {
return startSession;
}
/**
* Sets the value of the startSession property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setStartSession(XMLGregorianCalendar value) {
this.startSession = value;
}
/**
* Gets the value of the sessionInformationExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getSessionInformationExtension() {
return sessionInformationExtension;
}
/**
* Sets the value of the sessionInformationExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setSessionInformationExtension(ExtensionType value) {
this.sessionInformationExtension = value;
}
}