
de.vdv.ojp20.siri.SituationFullRefStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ojp-java-model Show documentation
Show all versions of ojp-java-model Show documentation
Generates Java model from OJP xsds using jaxb.
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;
import uk.org.ifopt.ifopt.CountryRefStructure;
/**
* Java class for SituationFullRefStructure complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
* {@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SituationFullRefStructure", propOrder = {
"versionCountryRef",
"participantRef",
"situationNumber",
"updateCountryRef",
"updateParticipantRef",
"version"
})
@XmlSeeAlso({
de.vdv.ojp20.SituationFullRefStructure.class
})
public class SituationFullRefStructure {
@XmlElement(name = "VersionCountryRef")
protected CountryRefStructure versionCountryRef;
@XmlElement(name = "ParticipantRef", required = true)
protected ParticipantRefStructure participantRef;
@XmlElement(name = "SituationNumber", required = true)
protected EntryQualifierStructure situationNumber;
@XmlElement(name = "UpdateCountryRef")
protected CountryRefStructure updateCountryRef;
@XmlElement(name = "UpdateParticipantRef")
protected ParticipantRefStructure updateParticipantRef;
@XmlElement(name = "Version")
protected SituationVersion version;
/**
* Gets the value of the versionCountryRef property.
*
* @return
* possible object is
* {@link CountryRefStructure }
*
*/
public CountryRefStructure getVersionCountryRef() {
return versionCountryRef;
}
/**
* Sets the value of the versionCountryRef property.
*
* @param value
* allowed object is
* {@link CountryRefStructure }
*
*/
public void setVersionCountryRef(CountryRefStructure value) {
this.versionCountryRef = 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;
}
/**
* Gets the value of the situationNumber property.
*
* @return
* possible object is
* {@link EntryQualifierStructure }
*
*/
public EntryQualifierStructure getSituationNumber() {
return situationNumber;
}
/**
* Sets the value of the situationNumber property.
*
* @param value
* allowed object is
* {@link EntryQualifierStructure }
*
*/
public void setSituationNumber(EntryQualifierStructure value) {
this.situationNumber = value;
}
/**
* Gets the value of the updateCountryRef property.
*
* @return
* possible object is
* {@link CountryRefStructure }
*
*/
public CountryRefStructure getUpdateCountryRef() {
return updateCountryRef;
}
/**
* Sets the value of the updateCountryRef property.
*
* @param value
* allowed object is
* {@link CountryRefStructure }
*
*/
public void setUpdateCountryRef(CountryRefStructure value) {
this.updateCountryRef = value;
}
/**
* Gets the value of the updateParticipantRef property.
*
* @return
* possible object is
* {@link ParticipantRefStructure }
*
*/
public ParticipantRefStructure getUpdateParticipantRef() {
return updateParticipantRef;
}
/**
* Sets the value of the updateParticipantRef property.
*
* @param value
* allowed object is
* {@link ParticipantRefStructure }
*
*/
public void setUpdateParticipantRef(ParticipantRefStructure value) {
this.updateParticipantRef = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link SituationVersion }
*
*/
public SituationVersion getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link SituationVersion }
*
*/
public void setVersion(SituationVersion value) {
this.version = value;
}
public SituationFullRefStructure withVersionCountryRef(CountryRefStructure value) {
setVersionCountryRef(value);
return this;
}
public SituationFullRefStructure withParticipantRef(ParticipantRefStructure value) {
setParticipantRef(value);
return this;
}
public SituationFullRefStructure withSituationNumber(EntryQualifierStructure value) {
setSituationNumber(value);
return this;
}
public SituationFullRefStructure withUpdateCountryRef(CountryRefStructure value) {
setUpdateCountryRef(value);
return this;
}
public SituationFullRefStructure withUpdateParticipantRef(ParticipantRefStructure value) {
setUpdateParticipantRef(value);
return this;
}
public SituationFullRefStructure withVersion(SituationVersion value) {
setVersion(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