org.rutebanken.netex.model.PassengerStopAssignment_DerivedViewStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netex-java-model Show documentation
Show all versions of netex-java-model Show documentation
Generates Java model from NeTEx XSDs using JAXB.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.09.21 at 10:53:23 AM CEST
//
package org.rutebanken.netex.model;
import java.math.BigInteger;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
/**
* Java class for PassengerStopAssignment_DerivedViewStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PassengerStopAssignment_DerivedViewStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}DerivedViewStructure">
* <sequence>
* <element ref="{http://www.netex.org.uk/netex}PassengerStopAssignmentRef" minOccurs="0"/>
* <element ref="{http://www.netex.org.uk/netex}StopPlaceRef" minOccurs="0"/>
* <element name="QuayRef" type="{http://www.netex.org.uk/netex}QuayRefStructure" minOccurs="0"/>
* <element name="QuayName" type="{http://www.netex.org.uk/netex}MultilingualString" minOccurs="0"/>
* <element name="Label" type="{http://www.w3.org/2001/XMLSchema}normalizedString" minOccurs="0"/>
* </sequence>
* <attribute name="order" type="{http://www.w3.org/2001/XMLSchema}integer" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PassengerStopAssignment_DerivedViewStructure", propOrder = {
"passengerStopAssignmentRef",
"stopPlaceRef",
"quayRef",
"quayName",
"label"
})
@XmlSeeAlso({
PassengerStopAssignmentView.class,
QuayAssignmentView.class
})
public class PassengerStopAssignment_DerivedViewStructure
extends DerivedViewStructure
{
@XmlElementRef(name = "PassengerStopAssignmentRef", namespace = "http://www.netex.org.uk/netex", type = JAXBElement.class, required = false)
protected JAXBElement extends PassengerStopAssignmentRefStructure> passengerStopAssignmentRef;
@XmlElement(name = "StopPlaceRef")
protected StopPlaceRefStructure stopPlaceRef;
@XmlElement(name = "QuayRef")
protected QuayRefStructure quayRef;
@XmlElement(name = "QuayName")
protected MultilingualString quayName;
@XmlElement(name = "Label")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String label;
@XmlAttribute(name = "order")
protected BigInteger order;
/**
* Gets the value of the passengerStopAssignmentRef property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link DynamicStopAssignmentRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link PassengerStopAssignmentRefStructure }{@code >}
*
*/
public JAXBElement extends PassengerStopAssignmentRefStructure> getPassengerStopAssignmentRef() {
return passengerStopAssignmentRef;
}
/**
* Sets the value of the passengerStopAssignmentRef property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link DynamicStopAssignmentRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link PassengerStopAssignmentRefStructure }{@code >}
*
*/
public void setPassengerStopAssignmentRef(JAXBElement extends PassengerStopAssignmentRefStructure> value) {
this.passengerStopAssignmentRef = value;
}
/**
* Gets the value of the stopPlaceRef property.
*
* @return
* possible object is
* {@link StopPlaceRefStructure }
*
*/
public StopPlaceRefStructure getStopPlaceRef() {
return stopPlaceRef;
}
/**
* Sets the value of the stopPlaceRef property.
*
* @param value
* allowed object is
* {@link StopPlaceRefStructure }
*
*/
public void setStopPlaceRef(StopPlaceRefStructure value) {
this.stopPlaceRef = value;
}
/**
* Gets the value of the quayRef property.
*
* @return
* possible object is
* {@link QuayRefStructure }
*
*/
public QuayRefStructure getQuayRef() {
return quayRef;
}
/**
* Sets the value of the quayRef property.
*
* @param value
* allowed object is
* {@link QuayRefStructure }
*
*/
public void setQuayRef(QuayRefStructure value) {
this.quayRef = value;
}
/**
* Gets the value of the quayName property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getQuayName() {
return quayName;
}
/**
* Sets the value of the quayName property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setQuayName(MultilingualString value) {
this.quayName = value;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the order property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getOrder() {
return order;
}
/**
* Sets the value of the order property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setOrder(BigInteger value) {
this.order = value;
}
public PassengerStopAssignment_DerivedViewStructure withPassengerStopAssignmentRef(JAXBElement extends PassengerStopAssignmentRefStructure> value) {
setPassengerStopAssignmentRef(value);
return this;
}
public PassengerStopAssignment_DerivedViewStructure withStopPlaceRef(StopPlaceRefStructure value) {
setStopPlaceRef(value);
return this;
}
public PassengerStopAssignment_DerivedViewStructure withQuayRef(QuayRefStructure value) {
setQuayRef(value);
return this;
}
public PassengerStopAssignment_DerivedViewStructure withQuayName(MultilingualString value) {
setQuayName(value);
return this;
}
public PassengerStopAssignment_DerivedViewStructure withLabel(String value) {
setLabel(value);
return this;
}
public PassengerStopAssignment_DerivedViewStructure withOrder(BigInteger value) {
setOrder(value);
return this;
}
@Override
public PassengerStopAssignment_DerivedViewStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
@Override
public PassengerStopAssignment_DerivedViewStructure withId(String value) {
setId(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 - 2024 Weber Informatics LLC | Privacy Policy