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

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


/**
 * 

Java class for NonManagedCause complex type. * *

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

 * <complexType name="NonManagedCause">
 *   <complexContent>
 *     <extension base="{http://datex2.eu/schema/2/2_0}Cause">
 *       <sequence>
 *         <element name="causeDescription" type="{http://datex2.eu/schema/2/2_0}MultilingualString" minOccurs="0"/>
 *         <element name="causeType" type="{http://datex2.eu/schema/2/2_0}CauseTypeEnum" minOccurs="0"/>
 *         <element name="nonManagedCauseExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "NonManagedCause", propOrder = { "causeDescription", "causeType", "nonManagedCauseExtension" }) public class NonManagedCause extends Cause { protected MultilingualString causeDescription; @XmlSchemaType(name = "string") protected CauseTypeEnum causeType; protected ExtensionType nonManagedCauseExtension; /** * Gets the value of the causeDescription property. * * @return * possible object is * {@link MultilingualString } * */ public MultilingualString getCauseDescription() { return causeDescription; } /** * Sets the value of the causeDescription property. * * @param value * allowed object is * {@link MultilingualString } * */ public void setCauseDescription(MultilingualString value) { this.causeDescription = value; } /** * Gets the value of the causeType property. * * @return * possible object is * {@link CauseTypeEnum } * */ public CauseTypeEnum getCauseType() { return causeType; } /** * Sets the value of the causeType property. * * @param value * allowed object is * {@link CauseTypeEnum } * */ public void setCauseType(CauseTypeEnum value) { this.causeType = value; } /** * Gets the value of the nonManagedCauseExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getNonManagedCauseExtension() { return nonManagedCauseExtension; } /** * Sets the value of the nonManagedCauseExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setNonManagedCauseExtension(ExtensionType value) { this.nonManagedCauseExtension = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy