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

eu.datex2.schema._2._2_0.PermitsAndProhibitions 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for PermitsAndProhibitions complex type. * *

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

 * <complexType name="PermitsAndProhibitions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="activity" type="{http://datex2.eu/schema/2/2_0}RestAreaActivityEnum"/>
 *         <element name="regulation" type="{http://datex2.eu/schema/2/2_0}RegulationEnum"/>
 *         <element name="permitsAndProhibitionsExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PermitsAndProhibitions", propOrder = { "activity", "regulation", "permitsAndProhibitionsExtension" }) public class PermitsAndProhibitions { @XmlElement(required = true) @XmlSchemaType(name = "string") protected RestAreaActivityEnum activity; @XmlElement(required = true) @XmlSchemaType(name = "string") protected RegulationEnum regulation; protected ExtensionType permitsAndProhibitionsExtension; /** * Gets the value of the activity property. * * @return * possible object is * {@link RestAreaActivityEnum } * */ public RestAreaActivityEnum getActivity() { return activity; } /** * Sets the value of the activity property. * * @param value * allowed object is * {@link RestAreaActivityEnum } * */ public void setActivity(RestAreaActivityEnum value) { this.activity = value; } /** * Gets the value of the regulation property. * * @return * possible object is * {@link RegulationEnum } * */ public RegulationEnum getRegulation() { return regulation; } /** * Sets the value of the regulation property. * * @param value * allowed object is * {@link RegulationEnum } * */ public void setRegulation(RegulationEnum value) { this.regulation = value; } /** * Gets the value of the permitsAndProhibitionsExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getPermitsAndProhibitionsExtension() { return permitsAndProhibitionsExtension; } /** * Sets the value of the permitsAndProhibitionsExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setPermitsAndProhibitionsExtension(ExtensionType value) { this.permitsAndProhibitionsExtension = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy