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

uk.org.siri.siri21.FormationCondition Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2025.01.07 at 02:19:41 PM UTC 
//


package uk.org.siri.siri21;

import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Type for FORMATION CONDITION. (since SIRI 2.1)
 * 
 * 

Java class for FormationConditionStructure complex type. * *

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

 * <complexType name="FormationConditionStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{http://www.siri.org.uk/siri}TrainFormationReferenceGroup" minOccurs="0"/>
 *         <choice>
 *           <element name="FormationStatus" type="{http://www.siri.org.uk/siri}FormationStatusStructure"/>
 *           <element name="VehicleInFormationStatus" type="{http://www.siri.org.uk/siri}VehicleInFormationStatusStructure"/>
 *         </choice>
 *         <element ref="{http://www.siri.org.uk/siri}SituationRef" minOccurs="0"/>
 *         <element name="RecommendedAction" type="{http://www.siri.org.uk/siri}RecommendedActionStructure" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FormationConditionStructure", propOrder = { "compoundTrainRef", "trainInCompoundTrainRef", "trainRef", "trainComponentRef", "trainElementRef", "entranceToVehicleRef", "vehicleInFormationStatus", "formationStatus", "situationRef", "recommendedAction", "extensions" }) @XmlRootElement(name = "FormationCondition") public class FormationCondition implements Serializable { @XmlElement(name = "CompoundTrainRef") protected CompoundTrainRef compoundTrainRef; @XmlElement(name = "TrainInCompoundTrainRef") protected TrainInCompoundTrainRef trainInCompoundTrainRef; @XmlElement(name = "TrainRef") protected TrainRef trainRef; @XmlElement(name = "TrainComponentRef") protected TrainComponentRef trainComponentRef; @XmlElement(name = "TrainElementRef") protected TrainElementRef trainElementRef; @XmlElement(name = "EntranceToVehicleRef") protected EntranceToVehicleRef entranceToVehicleRef; @XmlElement(name = "VehicleInFormationStatus") protected VehicleInFormationStatusStructure vehicleInFormationStatus; @XmlElement(name = "FormationStatus") protected FormationStatusStructure formationStatus; @XmlElement(name = "SituationRef") protected SituationRef situationRef; @XmlElement(name = "RecommendedAction") protected RecommendedActionStructure recommendedAction; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the compoundTrainRef property. * * @return * possible object is * {@link CompoundTrainRef } * */ public CompoundTrainRef getCompoundTrainRef() { return compoundTrainRef; } /** * Sets the value of the compoundTrainRef property. * * @param value * allowed object is * {@link CompoundTrainRef } * */ public void setCompoundTrainRef(CompoundTrainRef value) { this.compoundTrainRef = value; } /** * Gets the value of the trainInCompoundTrainRef property. * * @return * possible object is * {@link TrainInCompoundTrainRef } * */ public TrainInCompoundTrainRef getTrainInCompoundTrainRef() { return trainInCompoundTrainRef; } /** * Sets the value of the trainInCompoundTrainRef property. * * @param value * allowed object is * {@link TrainInCompoundTrainRef } * */ public void setTrainInCompoundTrainRef(TrainInCompoundTrainRef value) { this.trainInCompoundTrainRef = value; } /** * Gets the value of the trainRef property. * * @return * possible object is * {@link TrainRef } * */ public TrainRef getTrainRef() { return trainRef; } /** * Sets the value of the trainRef property. * * @param value * allowed object is * {@link TrainRef } * */ public void setTrainRef(TrainRef value) { this.trainRef = value; } /** * Gets the value of the trainComponentRef property. * * @return * possible object is * {@link TrainComponentRef } * */ public TrainComponentRef getTrainComponentRef() { return trainComponentRef; } /** * Sets the value of the trainComponentRef property. * * @param value * allowed object is * {@link TrainComponentRef } * */ public void setTrainComponentRef(TrainComponentRef value) { this.trainComponentRef = value; } /** * Gets the value of the trainElementRef property. * * @return * possible object is * {@link TrainElementRef } * */ public TrainElementRef getTrainElementRef() { return trainElementRef; } /** * Sets the value of the trainElementRef property. * * @param value * allowed object is * {@link TrainElementRef } * */ public void setTrainElementRef(TrainElementRef value) { this.trainElementRef = value; } /** * Gets the value of the entranceToVehicleRef property. * * @return * possible object is * {@link EntranceToVehicleRef } * */ public EntranceToVehicleRef getEntranceToVehicleRef() { return entranceToVehicleRef; } /** * Sets the value of the entranceToVehicleRef property. * * @param value * allowed object is * {@link EntranceToVehicleRef } * */ public void setEntranceToVehicleRef(EntranceToVehicleRef value) { this.entranceToVehicleRef = value; } /** * Gets the value of the vehicleInFormationStatus property. * * @return * possible object is * {@link VehicleInFormationStatusStructure } * */ public VehicleInFormationStatusStructure getVehicleInFormationStatus() { return vehicleInFormationStatus; } /** * Sets the value of the vehicleInFormationStatus property. * * @param value * allowed object is * {@link VehicleInFormationStatusStructure } * */ public void setVehicleInFormationStatus(VehicleInFormationStatusStructure value) { this.vehicleInFormationStatus = value; } /** * Gets the value of the formationStatus property. * * @return * possible object is * {@link FormationStatusStructure } * */ public FormationStatusStructure getFormationStatus() { return formationStatus; } /** * Sets the value of the formationStatus property. * * @param value * allowed object is * {@link FormationStatusStructure } * */ public void setFormationStatus(FormationStatusStructure value) { this.formationStatus = value; } /** * Gets the value of the situationRef property. * * @return * possible object is * {@link SituationRef } * */ public SituationRef getSituationRef() { return situationRef; } /** * Sets the value of the situationRef property. * * @param value * allowed object is * {@link SituationRef } * */ public void setSituationRef(SituationRef value) { this.situationRef = value; } /** * Gets the value of the recommendedAction property. * * @return * possible object is * {@link RecommendedActionStructure } * */ public RecommendedActionStructure getRecommendedAction() { return recommendedAction; } /** * Sets the value of the recommendedAction property. * * @param value * allowed object is * {@link RecommendedActionStructure } * */ public void setRecommendedAction(RecommendedActionStructure value) { this.recommendedAction = value; } /** * Gets the value of the extensions property. * * @return * possible object is * {@link Extensions } * */ public Extensions getExtensions() { return extensions; } /** * Sets the value of the extensions property. * * @param value * allowed object is * {@link Extensions } * */ public void setExtensions(Extensions value) { this.extensions = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy