![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri20.EstimatedServiceJourneyInterchange 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.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.XmlRootElement;
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 Estimated SERVICE JOURNEY INTERCHANGE.
*
* Java class for EstimatedServiceJourneyInterchangeStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="EstimatedServiceJourneyInterchangeStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <element ref="{http://www.siri.org.uk/siri}InterchangeRef"/>
* <sequence>
* <element name="FeederJourneyRef" type="{http://www.siri.org.uk/siri}ConnectingJourneyRefStructure"/>
* <element name="DistributorJourneyRef" type="{http://www.siri.org.uk/siri}ConnectingJourneyRefStructure"/>
* </sequence>
* </choice>
* <choice>
* <element name="WillNotWait" type="{http://www.siri.org.uk/siri}EmptyType"/>
* <element name="WillWait" type="{http://www.siri.org.uk/siri}WillWaitStructure"/>
* </choice>
* <element name="ExpectedDepartureTimeOfDistributor" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="ConnectionMonitoring" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EstimatedServiceJourneyInterchangeStructure", propOrder = {
"feederJourneyRef",
"distributorJourneyRef",
"interchangeRef",
"willWait",
"willNotWait",
"expectedDepartureTimeOfDistributor",
"connectionMonitoring"
})
@XmlRootElement(name = "EstimatedServiceJourneyInterchange")
public class EstimatedServiceJourneyInterchange
implements Serializable
{
@XmlElement(name = "FeederJourneyRef")
protected ConnectingJourneyRefStructure feederJourneyRef;
@XmlElement(name = "DistributorJourneyRef")
protected ConnectingJourneyRefStructure distributorJourneyRef;
@XmlElement(name = "InterchangeRef")
protected InterchangeRef interchangeRef;
@XmlElement(name = "WillWait")
protected WillWaitStructure willWait;
@XmlElement(name = "WillNotWait")
protected String willNotWait;
@XmlElement(name = "ExpectedDepartureTimeOfDistributor", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected ZonedDateTime expectedDepartureTimeOfDistributor;
@XmlElement(name = "ConnectionMonitoring")
protected Boolean connectionMonitoring;
/**
* Gets the value of the feederJourneyRef property.
*
* @return
* possible object is
* {@link ConnectingJourneyRefStructure }
*
*/
public ConnectingJourneyRefStructure getFeederJourneyRef() {
return feederJourneyRef;
}
/**
* Sets the value of the feederJourneyRef property.
*
* @param value
* allowed object is
* {@link ConnectingJourneyRefStructure }
*
*/
public void setFeederJourneyRef(ConnectingJourneyRefStructure value) {
this.feederJourneyRef = value;
}
/**
* Gets the value of the distributorJourneyRef property.
*
* @return
* possible object is
* {@link ConnectingJourneyRefStructure }
*
*/
public ConnectingJourneyRefStructure getDistributorJourneyRef() {
return distributorJourneyRef;
}
/**
* Sets the value of the distributorJourneyRef property.
*
* @param value
* allowed object is
* {@link ConnectingJourneyRefStructure }
*
*/
public void setDistributorJourneyRef(ConnectingJourneyRefStructure value) {
this.distributorJourneyRef = value;
}
/**
* Gets the value of the interchangeRef property.
*
* @return
* possible object is
* {@link InterchangeRef }
*
*/
public InterchangeRef getInterchangeRef() {
return interchangeRef;
}
/**
* Sets the value of the interchangeRef property.
*
* @param value
* allowed object is
* {@link InterchangeRef }
*
*/
public void setInterchangeRef(InterchangeRef value) {
this.interchangeRef = value;
}
/**
* Gets the value of the willWait property.
*
* @return
* possible object is
* {@link WillWaitStructure }
*
*/
public WillWaitStructure getWillWait() {
return willWait;
}
/**
* Sets the value of the willWait property.
*
* @param value
* allowed object is
* {@link WillWaitStructure }
*
*/
public void setWillWait(WillWaitStructure value) {
this.willWait = value;
}
/**
* Gets the value of the willNotWait property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWillNotWait() {
return willNotWait;
}
/**
* Sets the value of the willNotWait property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWillNotWait(String value) {
this.willNotWait = value;
}
/**
* Gets the value of the expectedDepartureTimeOfDistributor property.
*
* @return
* possible object is
* {@link String }
*
*/
public ZonedDateTime getExpectedDepartureTimeOfDistributor() {
return expectedDepartureTimeOfDistributor;
}
/**
* Sets the value of the expectedDepartureTimeOfDistributor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExpectedDepartureTimeOfDistributor(ZonedDateTime value) {
this.expectedDepartureTimeOfDistributor = value;
}
/**
* Gets the value of the connectionMonitoring property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isConnectionMonitoring() {
return connectionMonitoring;
}
/**
* Sets the value of the connectionMonitoring property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setConnectionMonitoring(Boolean value) {
this.connectionMonitoring = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy