All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.datex2.schema._2._2_0.GenericPublication Maven / Gradle / Ivy

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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for GenericPublication complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="GenericPublication">
 *   <complexContent>
 *     <extension base="{http://datex2.eu/schema/2/2_0}PayloadPublication">
 *       <sequence>
 *         <element name="genericPublicationName" type="{http://datex2.eu/schema/2/2_0}String"/>
 *         <element name="genericPublicationExtension" type="{http://datex2.eu/schema/2/2_0}_GenericPublicationExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GenericPublication", propOrder = { "genericPublicationName", "genericPublicationExtension" }) @XmlSeeAlso({ ParkingVehiclesPublication.class }) public class GenericPublication extends PayloadPublication { @XmlElement(required = true) protected String genericPublicationName; protected GenericPublicationExtensionType genericPublicationExtension; /** * Gets the value of the genericPublicationName property. * * @return * possible object is * {@link String } * */ public String getGenericPublicationName() { return genericPublicationName; } /** * Sets the value of the genericPublicationName property. * * @param value * allowed object is * {@link String } * */ public void setGenericPublicationName(String value) { this.genericPublicationName = value; } /** * Gets the value of the genericPublicationExtension property. * * @return * possible object is * {@link GenericPublicationExtensionType } * */ public GenericPublicationExtensionType getGenericPublicationExtension() { return genericPublicationExtension; } /** * Sets the value of the genericPublicationExtension property. * * @param value * allowed object is * {@link GenericPublicationExtensionType } * */ public void setGenericPublicationExtension(GenericPublicationExtensionType value) { this.genericPublicationExtension = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy