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

de.vdv.ojp20.siri.AbstractSituationElementStructure 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;
import org.opentripplanner.ojp.time.XmlDateTime;
import org.opentripplanner.ojp.util.XmlDateTimeAdapter;
import uk.org.ifopt.ifopt.CountryRefStructure;


/**
 * 

Java class for AbstractSituationElementStructure complex type

. * *

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

* *
{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractSituationElementStructure", propOrder = { "creationTime", "countryRef", "participantRef", "situationNumber", "updateCountryRef", "updateParticipantRef", "version" }) @XmlSeeAlso({ SituationElementStructure.class }) public class AbstractSituationElementStructure { @XmlElement(name = "CreationTime", required = true, type = String.class) @XmlJavaTypeAdapter(XmlDateTimeAdapter.class) @XmlSchemaType(name = "dateTime") protected XmlDateTime creationTime; @XmlElement(name = "CountryRef") protected CountryRefStructure countryRef; @XmlElement(name = "ParticipantRef") 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 creationTime property. * * @return * possible object is * {@link String } * */ public XmlDateTime getCreationTime() { return creationTime; } /** * Sets the value of the creationTime property. * * @param value * allowed object is * {@link String } * */ public void setCreationTime(XmlDateTime value) { this.creationTime = value; } /** * Gets the value of the countryRef property. * * @return * possible object is * {@link CountryRefStructure } * */ public CountryRefStructure getCountryRef() { return countryRef; } /** * Sets the value of the countryRef property. * * @param value * allowed object is * {@link CountryRefStructure } * */ public void setCountryRef(CountryRefStructure value) { this.countryRef = 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 AbstractSituationElementStructure withCreationTime(XmlDateTime value) { setCreationTime(value); return this; } public AbstractSituationElementStructure withCountryRef(CountryRefStructure value) { setCountryRef(value); return this; } public AbstractSituationElementStructure withParticipantRef(ParticipantRefStructure value) { setParticipantRef(value); return this; } public AbstractSituationElementStructure withSituationNumber(EntryQualifierStructure value) { setSituationNumber(value); return this; } public AbstractSituationElementStructure withUpdateCountryRef(CountryRefStructure value) { setUpdateCountryRef(value); return this; } public AbstractSituationElementStructure withUpdateParticipantRef(ParticipantRefStructure value) { setUpdateParticipantRef(value); return this; } public AbstractSituationElementStructure 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