![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri20.MonitoredFeederArrivalStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siri-java-model Show documentation
Show all versions of siri-java-model Show documentation
Java objects based on the public SIRI XSDs
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:39 PM UTC
//
package uk.org.siri.siri20;
import java.io.Serializable;
import java.math.BigInteger;
import java.time.ZonedDateTime;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3._2001.xmlschema.Adapter1;
/**
* Type for Real time connection at a stop.
*
* Java class for MonitoredFeederArrivalStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MonitoredFeederArrivalStructure">
* <complexContent>
* <extension base="{http://www.siri.org.uk/siri}AbstractFeederItemStructure">
* <sequence>
* <element name="ClearDownRef" type="{http://www.siri.org.uk/siri}ClearDownRefStructure" minOccurs="0"/>
* <element name="FeederJourney" type="{http://www.siri.org.uk/siri}InterchangeJourneyStructure"/>
* <element ref="{http://www.siri.org.uk/siri}VehicleAtStop" minOccurs="0"/>
* <element name="NumberOfTransferPassengers" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}AimedArrivalTime" minOccurs="0"/>
* <element name="ExpectedArrivalTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}ArrivalPlatformName" minOccurs="0"/>
* <element name="SuggestedWaitDecisionTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MonitoredFeederArrivalStructure", propOrder = {
"clearDownRef",
"feederJourney",
"vehicleAtStop",
"numberOfTransferPassengers",
"aimedArrivalTime",
"expectedArrivalTime",
"arrivalPlatformName",
"suggestedWaitDecisionTime",
"extensions"
})
public class MonitoredFeederArrivalStructure
extends AbstractFeederItemStructure
implements Serializable
{
@XmlElement(name = "ClearDownRef")
protected ClearDownRefStructure clearDownRef;
@XmlElement(name = "FeederJourney", required = true)
protected InterchangeJourneyStructure feederJourney;
@XmlElement(name = "VehicleAtStop", defaultValue = "false")
protected Boolean vehicleAtStop;
@XmlElement(name = "NumberOfTransferPassengers")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger numberOfTransferPassengers;
@XmlElement(name = "AimedArrivalTime", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected ZonedDateTime aimedArrivalTime;
@XmlElement(name = "ExpectedArrivalTime", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected ZonedDateTime expectedArrivalTime;
@XmlElement(name = "ArrivalPlatformName")
protected NaturalLanguageStringStructure arrivalPlatformName;
@XmlElement(name = "SuggestedWaitDecisionTime", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected ZonedDateTime suggestedWaitDecisionTime;
@XmlElement(name = "Extensions")
protected Extensions extensions;
/**
* Gets the value of the clearDownRef property.
*
* @return
* possible object is
* {@link ClearDownRefStructure }
*
*/
public ClearDownRefStructure getClearDownRef() {
return clearDownRef;
}
/**
* Sets the value of the clearDownRef property.
*
* @param value
* allowed object is
* {@link ClearDownRefStructure }
*
*/
public void setClearDownRef(ClearDownRefStructure value) {
this.clearDownRef = value;
}
/**
* Gets the value of the feederJourney property.
*
* @return
* possible object is
* {@link InterchangeJourneyStructure }
*
*/
public InterchangeJourneyStructure getFeederJourney() {
return feederJourney;
}
/**
* Sets the value of the feederJourney property.
*
* @param value
* allowed object is
* {@link InterchangeJourneyStructure }
*
*/
public void setFeederJourney(InterchangeJourneyStructure value) {
this.feederJourney = value;
}
/**
* Gets the value of the vehicleAtStop property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isVehicleAtStop() {
return vehicleAtStop;
}
/**
* Sets the value of the vehicleAtStop property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setVehicleAtStop(Boolean value) {
this.vehicleAtStop = value;
}
/**
* Gets the value of the numberOfTransferPassengers property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getNumberOfTransferPassengers() {
return numberOfTransferPassengers;
}
/**
* Sets the value of the numberOfTransferPassengers property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setNumberOfTransferPassengers(BigInteger value) {
this.numberOfTransferPassengers = value;
}
/**
* Gets the value of the aimedArrivalTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public ZonedDateTime getAimedArrivalTime() {
return aimedArrivalTime;
}
/**
* Sets the value of the aimedArrivalTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAimedArrivalTime(ZonedDateTime value) {
this.aimedArrivalTime = value;
}
/**
* Gets the value of the expectedArrivalTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public ZonedDateTime getExpectedArrivalTime() {
return expectedArrivalTime;
}
/**
* Sets the value of the expectedArrivalTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExpectedArrivalTime(ZonedDateTime value) {
this.expectedArrivalTime = value;
}
/**
* Gets the value of the arrivalPlatformName property.
*
* @return
* possible object is
* {@link NaturalLanguageStringStructure }
*
*/
public NaturalLanguageStringStructure getArrivalPlatformName() {
return arrivalPlatformName;
}
/**
* Sets the value of the arrivalPlatformName property.
*
* @param value
* allowed object is
* {@link NaturalLanguageStringStructure }
*
*/
public void setArrivalPlatformName(NaturalLanguageStringStructure value) {
this.arrivalPlatformName = value;
}
/**
* Gets the value of the suggestedWaitDecisionTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public ZonedDateTime getSuggestedWaitDecisionTime() {
return suggestedWaitDecisionTime;
}
/**
* Sets the value of the suggestedWaitDecisionTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSuggestedWaitDecisionTime(ZonedDateTime value) {
this.suggestedWaitDecisionTime = 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