
eu.datex2.schema._2._2_0.PublicEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datex2-api Show documentation
Show all versions of datex2-api Show documentation
DATEX II API for Java, allows to create DATEX II suppliers and clients.
The newest version!
package eu.datex2.schema._2._2_0;
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;
/**
* Java class for PublicEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PublicEvent">
* <complexContent>
* <extension base="{http://datex2.eu/schema/2/2_0}Activity">
* <sequence>
* <element name="publicEventType" type="{http://datex2.eu/schema/2/2_0}PublicEventTypeEnum"/>
* <element name="publicEventExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PublicEvent", propOrder = {
"publicEventType",
"publicEventExtension"
})
public class PublicEvent
extends Activity
{
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected PublicEventTypeEnum publicEventType;
protected ExtensionType publicEventExtension;
/**
* Gets the value of the publicEventType property.
*
* @return
* possible object is
* {@link PublicEventTypeEnum }
*
*/
public PublicEventTypeEnum getPublicEventType() {
return publicEventType;
}
/**
* Sets the value of the publicEventType property.
*
* @param value
* allowed object is
* {@link PublicEventTypeEnum }
*
*/
public void setPublicEventType(PublicEventTypeEnum value) {
this.publicEventType = value;
}
/**
* Gets the value of the publicEventExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getPublicEventExtension() {
return publicEventExtension;
}
/**
* Sets the value of the publicEventExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setPublicEventExtension(ExtensionType value) {
this.publicEventExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy