org.rutebanken.netex.model.Operator_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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
/**
* Java class for Operator_DerivedViewStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Operator_DerivedViewStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}DerivedViewStructure">
* <sequence>
* <element ref="{http://www.netex.org.uk/netex}OperatorRef" minOccurs="0"/>
* <group ref="{http://www.netex.org.uk/netex}OrganisationNameGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Operator_DerivedViewStructure", propOrder = {
"operatorRef",
"name",
"shortName",
"legalName",
"tradingName",
"alternativeNames"
})
@XmlSeeAlso({
OperatorView.class
})
public class Operator_DerivedViewStructure
extends DerivedViewStructure
{
@XmlElement(name = "OperatorRef")
protected OperatorRefStructure operatorRef;
@XmlElement(name = "Name")
protected MultilingualString name;
@XmlElement(name = "ShortName")
protected MultilingualString shortName;
@XmlElement(name = "LegalName")
protected MultilingualString legalName;
@XmlElement(name = "TradingName")
protected MultilingualString tradingName;
protected AlternativeNames_RelStructure alternativeNames;
/**
* Gets the value of the operatorRef property.
*
* @return
* possible object is
* {@link OperatorRefStructure }
*
*/
public OperatorRefStructure getOperatorRef() {
return operatorRef;
}
/**
* Sets the value of the operatorRef property.
*
* @param value
* allowed object is
* {@link OperatorRefStructure }
*
*/
public void setOperatorRef(OperatorRefStructure value) {
this.operatorRef = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setName(MultilingualString value) {
this.name = value;
}
/**
* Gets the value of the shortName property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getShortName() {
return shortName;
}
/**
* Sets the value of the shortName property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setShortName(MultilingualString value) {
this.shortName = value;
}
/**
* Gets the value of the legalName property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getLegalName() {
return legalName;
}
/**
* Sets the value of the legalName property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setLegalName(MultilingualString value) {
this.legalName = value;
}
/**
* Gets the value of the tradingName property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getTradingName() {
return tradingName;
}
/**
* Sets the value of the tradingName property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setTradingName(MultilingualString value) {
this.tradingName = value;
}
/**
* Gets the value of the alternativeNames property.
*
* @return
* possible object is
* {@link AlternativeNames_RelStructure }
*
*/
public AlternativeNames_RelStructure getAlternativeNames() {
return alternativeNames;
}
/**
* Sets the value of the alternativeNames property.
*
* @param value
* allowed object is
* {@link AlternativeNames_RelStructure }
*
*/
public void setAlternativeNames(AlternativeNames_RelStructure value) {
this.alternativeNames = value;
}
public Operator_DerivedViewStructure withOperatorRef(OperatorRefStructure value) {
setOperatorRef(value);
return this;
}
public Operator_DerivedViewStructure withName(MultilingualString value) {
setName(value);
return this;
}
public Operator_DerivedViewStructure withShortName(MultilingualString value) {
setShortName(value);
return this;
}
public Operator_DerivedViewStructure withLegalName(MultilingualString value) {
setLegalName(value);
return this;
}
public Operator_DerivedViewStructure withTradingName(MultilingualString value) {
setTradingName(value);
return this;
}
public Operator_DerivedViewStructure withAlternativeNames(AlternativeNames_RelStructure value) {
setAlternativeNames(value);
return this;
}
@Override
public Operator_DerivedViewStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
@Override
public Operator_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