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

de.vdv.ojp20.siri.ConnectingJourneyRefStructure Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
//


package de.vdv.ojp20.siri;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;


/**
 * 

Java class for ConnectingJourneyRefStructure complex type

. * *

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

* *
{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConnectingJourneyRefStructure", propOrder = { "framedVehicleJourneyRef", "datedVehicleJourneyIndirectRef", "lineRef", "trainNumberRef", "operatorRef", "participantRef" }) @XmlSeeAlso({ RelatedJourneyStructure.class }) public class ConnectingJourneyRefStructure { @XmlElement(name = "FramedVehicleJourneyRef") protected FramedVehicleJourneyRefStructure framedVehicleJourneyRef; @XmlElement(name = "DatedVehicleJourneyIndirectRef") protected DatedVehicleJourneyIndirectRefStructure datedVehicleJourneyIndirectRef; @XmlElement(name = "LineRef") protected LineRefStructure lineRef; @XmlElement(name = "TrainNumberRef") protected TrainNumberRefStructure trainNumberRef; @XmlElement(name = "OperatorRef") protected OperatorRefStructure operatorRef; @XmlElement(name = "ParticipantRef") protected ParticipantRefStructure participantRef; /** * Gets the value of the framedVehicleJourneyRef property. * * @return * possible object is * {@link FramedVehicleJourneyRefStructure } * */ public FramedVehicleJourneyRefStructure getFramedVehicleJourneyRef() { return framedVehicleJourneyRef; } /** * Sets the value of the framedVehicleJourneyRef property. * * @param value * allowed object is * {@link FramedVehicleJourneyRefStructure } * */ public void setFramedVehicleJourneyRef(FramedVehicleJourneyRefStructure value) { this.framedVehicleJourneyRef = value; } /** * Gets the value of the datedVehicleJourneyIndirectRef property. * * @return * possible object is * {@link DatedVehicleJourneyIndirectRefStructure } * */ public DatedVehicleJourneyIndirectRefStructure getDatedVehicleJourneyIndirectRef() { return datedVehicleJourneyIndirectRef; } /** * Sets the value of the datedVehicleJourneyIndirectRef property. * * @param value * allowed object is * {@link DatedVehicleJourneyIndirectRefStructure } * */ public void setDatedVehicleJourneyIndirectRef(DatedVehicleJourneyIndirectRefStructure value) { this.datedVehicleJourneyIndirectRef = value; } /** * Gets the value of the lineRef property. * * @return * possible object is * {@link LineRefStructure } * */ public LineRefStructure getLineRef() { return lineRef; } /** * Sets the value of the lineRef property. * * @param value * allowed object is * {@link LineRefStructure } * */ public void setLineRef(LineRefStructure value) { this.lineRef = value; } /** * Gets the value of the trainNumberRef property. * * @return * possible object is * {@link TrainNumberRefStructure } * */ public TrainNumberRefStructure getTrainNumberRef() { return trainNumberRef; } /** * Sets the value of the trainNumberRef property. * * @param value * allowed object is * {@link TrainNumberRefStructure } * */ public void setTrainNumberRef(TrainNumberRefStructure value) { this.trainNumberRef = value; } /** * Gets the value of the operatorRef property. * * @return * possible object is * {@link OperatorRefStructure } * */ public OperatorRefStructure getOperatorRef() { return operatorRef; } /** * Sets the value of the operatorRef property. * * @param value * allowed object is * {@link OperatorRefStructure } * */ public void setOperatorRef(OperatorRefStructure value) { this.operatorRef = value; } /** * Gets the value of the participantRef property. * * @return * possible object is * {@link ParticipantRefStructure } * */ public ParticipantRefStructure getParticipantRef() { return participantRef; } /** * Sets the value of the participantRef property. * * @param value * allowed object is * {@link ParticipantRefStructure } * */ public void setParticipantRef(ParticipantRefStructure value) { this.participantRef = value; } public ConnectingJourneyRefStructure withFramedVehicleJourneyRef(FramedVehicleJourneyRefStructure value) { setFramedVehicleJourneyRef(value); return this; } public ConnectingJourneyRefStructure withDatedVehicleJourneyIndirectRef(DatedVehicleJourneyIndirectRefStructure value) { setDatedVehicleJourneyIndirectRef(value); return this; } public ConnectingJourneyRefStructure withLineRef(LineRefStructure value) { setLineRef(value); return this; } public ConnectingJourneyRefStructure withTrainNumberRef(TrainNumberRefStructure value) { setTrainNumberRef(value); return this; } public ConnectingJourneyRefStructure withOperatorRef(OperatorRefStructure value) { setOperatorRef(value); return this; } public ConnectingJourneyRefStructure withParticipantRef(ParticipantRefStructure value) { setParticipantRef(value); return this; } /** * Generates a String representation of the contents of this type. * This is an extension method, produced by the 'ts' xjc plugin * */ @Override public String toString() { return ToStringBuilder.reflectionToString(this, OmitNullsToStringStyle.INSTANCE); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy