com.hubject.datex.energyinfrastructure.generated.messagecontainer.MessageContainer 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.messagecontainer;
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.XmlType;
import com.hubject.datex.energyinfrastructure.generated.cisinformation.CISInformation;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
import com.hubject.datex.energyinfrastructure.generated.common.PayloadPublication;
import com.hubject.datex.energyinfrastructure.generated.exchangeinformation.ExchangeInformation;
import com.hubject.datex.energyinfrastructure.generated.informationmanagement.InformationManagement;
/**
* Java class for MessageContainer complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MessageContainer">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="payload" type="{http://datex2.eu/schema/3/common}PayloadPublication" maxOccurs="unbounded" minOccurs="0"/>
* <element name="cisInformation" type="{http://datex2.eu/schema/3/cisInformation}CISInformation" minOccurs="0"/>
* <element name="exchangeInformation" type="{http://datex2.eu/schema/3/exchangeInformation}ExchangeInformation"/>
* <element name="informationManagement" type="{http://datex2.eu/schema/3/informationManagement}InformationManagement" minOccurs="0"/>
* <element name="_messageContainerExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* <attribute name="modelBaseVersion" use="required" type="{http://www.w3.org/2001/XMLSchema}string" fixed="3" />
* <attribute name="extensionName" type="{http://www.w3.org/2001/XMLSchema}string" default="Exchange 2018" />
* <attribute name="extensionVersion" type="{http://www.w3.org/2001/XMLSchema}string" default="1" />
* <attribute name="profileName" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="profileVersion" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MessageContainer", propOrder = {
"payload",
"cisInformation",
"exchangeInformation",
"informationManagement",
"messageContainerExtension"
})
public class MessageContainer {
protected List payload;
protected CISInformation cisInformation;
@XmlElement(required = true)
protected ExchangeInformation exchangeInformation;
protected InformationManagement informationManagement;
@XmlElement(name = "_messageContainerExtension")
protected ExtensionType messageContainerExtension;
@XmlAttribute(name = "modelBaseVersion", required = true)
protected String modelBaseVersion;
@XmlAttribute(name = "extensionName")
protected String extensionName;
@XmlAttribute(name = "extensionVersion")
protected String extensionVersion;
@XmlAttribute(name = "profileName")
protected String profileName;
@XmlAttribute(name = "profileVersion")
protected String profileVersion;
/**
* Gets the value of the payload 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 payload property.
*
*
* For example, to add a new item, do as follows:
*
* getPayload().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PayloadPublication }
*
*
*/
public List getPayload() {
if (payload == null) {
payload = new ArrayList();
}
return this.payload;
}
/**
* Gets the value of the cisInformation property.
*
* @return
* possible object is
* {@link CISInformation }
*
*/
public CISInformation getCisInformation() {
return cisInformation;
}
/**
* Sets the value of the cisInformation property.
*
* @param value
* allowed object is
* {@link CISInformation }
*
*/
public void setCisInformation(CISInformation value) {
this.cisInformation = value;
}
/**
* Gets the value of the exchangeInformation property.
*
* @return
* possible object is
* {@link ExchangeInformation }
*
*/
public ExchangeInformation getExchangeInformation() {
return exchangeInformation;
}
/**
* Sets the value of the exchangeInformation property.
*
* @param value
* allowed object is
* {@link ExchangeInformation }
*
*/
public void setExchangeInformation(ExchangeInformation value) {
this.exchangeInformation = value;
}
/**
* Gets the value of the informationManagement property.
*
* @return
* possible object is
* {@link InformationManagement }
*
*/
public InformationManagement getInformationManagement() {
return informationManagement;
}
/**
* Sets the value of the informationManagement property.
*
* @param value
* allowed object is
* {@link InformationManagement }
*
*/
public void setInformationManagement(InformationManagement value) {
this.informationManagement = value;
}
/**
* Gets the value of the messageContainerExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getMessageContainerExtension() {
return messageContainerExtension;
}
/**
* Sets the value of the messageContainerExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setMessageContainerExtension(ExtensionType value) {
this.messageContainerExtension = value;
}
/**
* Gets the value of the modelBaseVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getModelBaseVersion() {
if (modelBaseVersion == null) {
return "3";
} else {
return modelBaseVersion;
}
}
/**
* Sets the value of the modelBaseVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setModelBaseVersion(String value) {
this.modelBaseVersion = value;
}
/**
* Gets the value of the extensionName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExtensionName() {
if (extensionName == null) {
return "Exchange 2018";
} else {
return extensionName;
}
}
/**
* Sets the value of the extensionName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExtensionName(String value) {
this.extensionName = value;
}
/**
* Gets the value of the extensionVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExtensionVersion() {
if (extensionVersion == null) {
return "1";
} else {
return extensionVersion;
}
}
/**
* Sets the value of the extensionVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExtensionVersion(String value) {
this.extensionVersion = value;
}
/**
* Gets the value of the profileName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProfileName() {
return profileName;
}
/**
* Sets the value of the profileName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProfileName(String value) {
this.profileName = value;
}
/**
* Gets the value of the profileVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProfileVersion() {
return profileVersion;
}
/**
* Sets the value of the profileVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProfileVersion(String value) {
this.profileVersion = value;
}
}