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

org.rutebanken.netex.model.FareTable_VersionStructure Maven / Gradle / Ivy

There is a newer version: 2.0.15
Show newest version
//
// 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.time.OffsetDateTime;
import java.util.Collection;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
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.XmlJavaTypeAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
import org.rutebanken.util.OffsetDateTimeISO8601XmlAdapter;
import org.rutebanken.util.OffsetDateXmlAdapter;


/**
 * 

Java class for FareTable_VersionStructure complex type. * *

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

 * <complexType name="FareTable_VersionStructure">
 *   <complexContent>
 *     <extension base="{http://www.netex.org.uk/netex}GroupOfEntities_VersionStructure">
 *       <group ref="{http://www.netex.org.uk/netex}FareTableGroup"/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FareTable_VersionStructure", propOrder = { "startDate", "endDate", "roundingRef", "pricesFor", "usedIn", "organisationRef", "limitations", "specifics", "columns", "rows", "includes", "embargoUntil", "cells" }) @XmlSeeAlso({ FareTable.class }) public class FareTable_VersionStructure extends GroupOfEntities_VersionStructure { @XmlElement(name = "StartDate", type = String.class) @XmlJavaTypeAdapter(OffsetDateXmlAdapter.class) @XmlSchemaType(name = "date") protected OffsetDateTime startDate; @XmlElement(name = "EndDate", type = String.class) @XmlJavaTypeAdapter(OffsetDateXmlAdapter.class) @XmlSchemaType(name = "date") protected OffsetDateTime endDate; @XmlElement(name = "RoundingRef") protected RoundingRefStructure roundingRef; protected PriceableObjectRefs_RelStructure pricesFor; protected UsedInRefs_RelStructure usedIn; @XmlElementRef(name = "OrganisationRef", namespace = "http://www.netex.org.uk/netex", type = JAXBElement.class, required = false) protected JAXBElement organisationRef; protected UsageParameterRefs_RelStructure limitations; protected FareTable_VersionStructure.Specifics specifics; protected FareTableColumns_RelStructure columns; protected FareTableRows_RelStructure rows; protected FareTables_RelStructure includes; @XmlElement(name = "EmbargoUntil", type = String.class) @XmlJavaTypeAdapter(OffsetDateTimeISO8601XmlAdapter.class) @XmlSchemaType(name = "dateTime") protected OffsetDateTime embargoUntil; protected Cells_RelStructure cells; /** * Gets the value of the startDate property. * * @return * possible object is * {@link String } * */ public OffsetDateTime getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link String } * */ public void setStartDate(OffsetDateTime value) { this.startDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link String } * */ public OffsetDateTime getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link String } * */ public void setEndDate(OffsetDateTime value) { this.endDate = value; } /** * Gets the value of the roundingRef property. * * @return * possible object is * {@link RoundingRefStructure } * */ public RoundingRefStructure getRoundingRef() { return roundingRef; } /** * Sets the value of the roundingRef property. * * @param value * allowed object is * {@link RoundingRefStructure } * */ public void setRoundingRef(RoundingRefStructure value) { this.roundingRef = value; } /** * Gets the value of the pricesFor property. * * @return * possible object is * {@link PriceableObjectRefs_RelStructure } * */ public PriceableObjectRefs_RelStructure getPricesFor() { return pricesFor; } /** * Sets the value of the pricesFor property. * * @param value * allowed object is * {@link PriceableObjectRefs_RelStructure } * */ public void setPricesFor(PriceableObjectRefs_RelStructure value) { this.pricesFor = value; } /** * Gets the value of the usedIn property. * * @return * possible object is * {@link UsedInRefs_RelStructure } * */ public UsedInRefs_RelStructure getUsedIn() { return usedIn; } /** * Sets the value of the usedIn property. * * @param value * allowed object is * {@link UsedInRefs_RelStructure } * */ public void setUsedIn(UsedInRefs_RelStructure value) { this.usedIn = value; } /** * Gets the value of the organisationRef property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link RetailConsortiumRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link AuthorityRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link GeneralOrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link OrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ManagementAgentRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link OtherOrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link OrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link TravelAgentRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ServicedOrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link OperatorRefStructure }{@code >} * */ public JAXBElement getOrganisationRef() { return organisationRef; } /** * Sets the value of the organisationRef property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link RetailConsortiumRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link AuthorityRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link GeneralOrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link OrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ManagementAgentRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link OtherOrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link OrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link TravelAgentRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ServicedOrganisationRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link OperatorRefStructure }{@code >} * */ public void setOrganisationRef(JAXBElement value) { this.organisationRef = value; } /** * Gets the value of the limitations property. * * @return * possible object is * {@link UsageParameterRefs_RelStructure } * */ public UsageParameterRefs_RelStructure getLimitations() { return limitations; } /** * Sets the value of the limitations property. * * @param value * allowed object is * {@link UsageParameterRefs_RelStructure } * */ public void setLimitations(UsageParameterRefs_RelStructure value) { this.limitations = value; } /** * Gets the value of the specifics property. * * @return * possible object is * {@link FareTable_VersionStructure.Specifics } * */ public FareTable_VersionStructure.Specifics getSpecifics() { return specifics; } /** * Sets the value of the specifics property. * * @param value * allowed object is * {@link FareTable_VersionStructure.Specifics } * */ public void setSpecifics(FareTable_VersionStructure.Specifics value) { this.specifics = value; } /** * Gets the value of the columns property. * * @return * possible object is * {@link FareTableColumns_RelStructure } * */ public FareTableColumns_RelStructure getColumns() { return columns; } /** * Sets the value of the columns property. * * @param value * allowed object is * {@link FareTableColumns_RelStructure } * */ public void setColumns(FareTableColumns_RelStructure value) { this.columns = value; } /** * Gets the value of the rows property. * * @return * possible object is * {@link FareTableRows_RelStructure } * */ public FareTableRows_RelStructure getRows() { return rows; } /** * Sets the value of the rows property. * * @param value * allowed object is * {@link FareTableRows_RelStructure } * */ public void setRows(FareTableRows_RelStructure value) { this.rows = value; } /** * Gets the value of the includes property. * * @return * possible object is * {@link FareTables_RelStructure } * */ public FareTables_RelStructure getIncludes() { return includes; } /** * Sets the value of the includes property. * * @param value * allowed object is * {@link FareTables_RelStructure } * */ public void setIncludes(FareTables_RelStructure value) { this.includes = value; } /** * Gets the value of the embargoUntil property. * * @return * possible object is * {@link String } * */ public OffsetDateTime getEmbargoUntil() { return embargoUntil; } /** * Sets the value of the embargoUntil property. * * @param value * allowed object is * {@link String } * */ public void setEmbargoUntil(OffsetDateTime value) { this.embargoUntil = value; } /** * Gets the value of the cells property. * * @return * possible object is * {@link Cells_RelStructure } * */ public Cells_RelStructure getCells() { return cells; } /** * Sets the value of the cells property. * * @param value * allowed object is * {@link Cells_RelStructure } * */ public void setCells(Cells_RelStructure value) { this.cells = value; } public FareTable_VersionStructure withStartDate(OffsetDateTime value) { setStartDate(value); return this; } public FareTable_VersionStructure withEndDate(OffsetDateTime value) { setEndDate(value); return this; } public FareTable_VersionStructure withRoundingRef(RoundingRefStructure value) { setRoundingRef(value); return this; } public FareTable_VersionStructure withPricesFor(PriceableObjectRefs_RelStructure value) { setPricesFor(value); return this; } public FareTable_VersionStructure withUsedIn(UsedInRefs_RelStructure value) { setUsedIn(value); return this; } public FareTable_VersionStructure withOrganisationRef(JAXBElement value) { setOrganisationRef(value); return this; } public FareTable_VersionStructure withLimitations(UsageParameterRefs_RelStructure value) { setLimitations(value); return this; } public FareTable_VersionStructure withSpecifics(FareTable_VersionStructure.Specifics value) { setSpecifics(value); return this; } public FareTable_VersionStructure withColumns(FareTableColumns_RelStructure value) { setColumns(value); return this; } public FareTable_VersionStructure withRows(FareTableRows_RelStructure value) { setRows(value); return this; } public FareTable_VersionStructure withIncludes(FareTables_RelStructure value) { setIncludes(value); return this; } public FareTable_VersionStructure withEmbargoUntil(OffsetDateTime value) { setEmbargoUntil(value); return this; } public FareTable_VersionStructure withCells(Cells_RelStructure value) { setCells(value); return this; } @Override public FareTable_VersionStructure withName(MultilingualString value) { setName(value); return this; } @Override public FareTable_VersionStructure withShortName(MultilingualString value) { setShortName(value); return this; } @Override public FareTable_VersionStructure withDescription(MultilingualString value) { setDescription(value); return this; } @Override public FareTable_VersionStructure withPurposeOfGroupingRef(PurposeOfGroupingRefStructure value) { setPurposeOfGroupingRef(value); return this; } @Override public FareTable_VersionStructure withPrivateCode(PrivateCodeStructure value) { setPrivateCode(value); return this; } @Override public FareTable_VersionStructure withKeyList(KeyListStructure value) { setKeyList(value); return this; } @Override public FareTable_VersionStructure withExtensions(ExtensionsStructure value) { setExtensions(value); return this; } @Override public FareTable_VersionStructure withBrandingRef(BrandingRefStructure value) { setBrandingRef(value); return this; } @Override public FareTable_VersionStructure withAlternativeTexts(AlternativeTexts_RelStructure value) { setAlternativeTexts(value); return this; } @Override public FareTable_VersionStructure withResponsibilitySetRef(String value) { setResponsibilitySetRef(value); return this; } @Override public FareTable_VersionStructure withValidityConditions(ValidityConditions_RelStructure value) { setValidityConditions(value); return this; } @Override public FareTable_VersionStructure withValidBetween(ValidBetween... values) { if (values!= null) { for (ValidBetween value: values) { getValidBetween().add(value); } } return this; } @Override public FareTable_VersionStructure withValidBetween(Collection values) { if (values!= null) { getValidBetween().addAll(values); } return this; } @Override public FareTable_VersionStructure withDataSourceRef(String value) { setDataSourceRef(value); return this; } @Override public FareTable_VersionStructure withCreated(OffsetDateTime value) { setCreated(value); return this; } @Override public FareTable_VersionStructure withChanged(OffsetDateTime value) { setChanged(value); return this; } @Override public FareTable_VersionStructure withModification(ModificationEnumeration value) { setModification(value); return this; } @Override public FareTable_VersionStructure withVersion(String value) { setVersion(value); return this; } @Override public FareTable_VersionStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) { setStatus_BasicModificationDetailsGroup(value); return this; } @Override public FareTable_VersionStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) { setDerivedFromVersionRef_BasicModificationDetailsGroup(value); return this; } @Override public FareTable_VersionStructure withCompatibleWithVersionFrameVersionRef(String value) { setCompatibleWithVersionFrameVersionRef(value); return this; } @Override public FareTable_VersionStructure withDerivedFromObjectRef(String value) { setDerivedFromObjectRef(value); return this; } @Override public FareTable_VersionStructure withNameOfClass(String value) { setNameOfClass(value); return this; } @Override public FareTable_VersionStructure 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); } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <group ref="{http://www.netex.org.uk/netex}CellSpecificRoutingGroup"/>
     *         <group ref="{http://www.netex.org.uk/netex}CellSpecificServiceGroup"/>
     *         <group ref="{http://www.netex.org.uk/netex}CellSpecificDistributionGroup"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "directionType", "routingType", "fareClass", "classOfUseRef", "facilitySetRef", "typeOfProductCategoryRef", "typeOfServiceRef", "serviceJourneyRef", "trainNumberRef", "groupOfServicesRef", "typeOfFareProductRef", "distributionChannelRef", "groupOfDistributionChannelsRef" }) public static class Specifics { @XmlElement(name = "DirectionType", defaultValue = "both") @XmlSchemaType(name = "normalizedString") protected RelativeDirectionEnumeration directionType; @XmlElement(name = "RoutingType", defaultValue = "both") @XmlSchemaType(name = "normalizedString") protected RoutingTypeEnumeration routingType; @XmlElement(name = "FareClass", defaultValue = "unknown") @XmlSchemaType(name = "NMTOKEN") protected FareClassEnumeration fareClass; @XmlElement(name = "ClassOfUseRef") protected ClassOfUseRef classOfUseRef; @XmlElementRef(name = "FacilitySetRef", namespace = "http://www.netex.org.uk/netex", type = JAXBElement.class, required = false) protected JAXBElement facilitySetRef; @XmlElement(name = "TypeOfProductCategoryRef") protected TypeOfProductCategoryRefStructure typeOfProductCategoryRef; @XmlElement(name = "TypeOfServiceRef") protected TypeOfServiceRefStructure typeOfServiceRef; @XmlElementRef(name = "ServiceJourneyRef", namespace = "http://www.netex.org.uk/netex", type = JAXBElement.class, required = false) protected JAXBElement serviceJourneyRef; @XmlElement(name = "TrainNumberRef") protected TrainNumberRefStructure trainNumberRef; @XmlElement(name = "GroupOfServicesRef") protected GroupOfServicesRefStructure groupOfServicesRef; @XmlElement(name = "TypeOfFareProductRef") protected TypeOfFareProductRefStructure typeOfFareProductRef; @XmlElement(name = "DistributionChannelRef") protected DistributionChannelRefStructureElement distributionChannelRef; @XmlElement(name = "GroupOfDistributionChannelsRef") protected GroupOfDistributionChannelsRefStructure groupOfDistributionChannelsRef; /** * Gets the value of the directionType property. * * @return * possible object is * {@link RelativeDirectionEnumeration } * */ public RelativeDirectionEnumeration getDirectionType() { return directionType; } /** * Sets the value of the directionType property. * * @param value * allowed object is * {@link RelativeDirectionEnumeration } * */ public void setDirectionType(RelativeDirectionEnumeration value) { this.directionType = value; } /** * Gets the value of the routingType property. * * @return * possible object is * {@link RoutingTypeEnumeration } * */ public RoutingTypeEnumeration getRoutingType() { return routingType; } /** * Sets the value of the routingType property. * * @param value * allowed object is * {@link RoutingTypeEnumeration } * */ public void setRoutingType(RoutingTypeEnumeration value) { this.routingType = value; } /** * Gets the value of the fareClass property. * * @return * possible object is * {@link FareClassEnumeration } * */ public FareClassEnumeration getFareClass() { return fareClass; } /** * Sets the value of the fareClass property. * * @param value * allowed object is * {@link FareClassEnumeration } * */ public void setFareClass(FareClassEnumeration value) { this.fareClass = value; } /** * Gets the value of the classOfUseRef property. * * @return * possible object is * {@link ClassOfUseRef } * */ public ClassOfUseRef getClassOfUseRef() { return classOfUseRef; } /** * Sets the value of the classOfUseRef property. * * @param value * allowed object is * {@link ClassOfUseRef } * */ public void setClassOfUseRef(ClassOfUseRef value) { this.classOfUseRef = value; } /** * Gets the value of the facilitySetRef property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link SiteFacilitySetRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ServiceFacilitySetRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link FacilitySetRefStructure }{@code >} * */ public JAXBElement getFacilitySetRef() { return facilitySetRef; } /** * Sets the value of the facilitySetRef property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link SiteFacilitySetRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link ServiceFacilitySetRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link FacilitySetRefStructure }{@code >} * */ public void setFacilitySetRef(JAXBElement value) { this.facilitySetRef = value; } /** * Gets the value of the typeOfProductCategoryRef property. * * @return * possible object is * {@link TypeOfProductCategoryRefStructure } * */ public TypeOfProductCategoryRefStructure getTypeOfProductCategoryRef() { return typeOfProductCategoryRef; } /** * Sets the value of the typeOfProductCategoryRef property. * * @param value * allowed object is * {@link TypeOfProductCategoryRefStructure } * */ public void setTypeOfProductCategoryRef(TypeOfProductCategoryRefStructure value) { this.typeOfProductCategoryRef = value; } /** * Gets the value of the typeOfServiceRef property. * * @return * possible object is * {@link TypeOfServiceRefStructure } * */ public TypeOfServiceRefStructure getTypeOfServiceRef() { return typeOfServiceRef; } /** * Sets the value of the typeOfServiceRef property. * * @param value * allowed object is * {@link TypeOfServiceRefStructure } * */ public void setTypeOfServiceRef(TypeOfServiceRefStructure value) { this.typeOfServiceRef = value; } /** * Gets the value of the serviceJourneyRef property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link ServiceJourneyRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link TemplateServiceJourneyRefStructure }{@code >} * */ public JAXBElement getServiceJourneyRef() { return serviceJourneyRef; } /** * Sets the value of the serviceJourneyRef property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link ServiceJourneyRefStructure }{@code >} * {@link JAXBElement }{@code <}{@link TemplateServiceJourneyRefStructure }{@code >} * */ public void setServiceJourneyRef(JAXBElement value) { this.serviceJourneyRef = value; } /** * Gets the value of the trainNumberRef property. * * @return * possible object is * {@link TrainNumberRefStructure } * */ public TrainNumberRefStructure getTrainNumberRef() { return trainNumberRef; } /** * Sets the value of the trainNumberRef property. * * @param value * allowed object is * {@link TrainNumberRefStructure } * */ public void setTrainNumberRef(TrainNumberRefStructure value) { this.trainNumberRef = value; } /** * Gets the value of the groupOfServicesRef property. * * @return * possible object is * {@link GroupOfServicesRefStructure } * */ public GroupOfServicesRefStructure getGroupOfServicesRef() { return groupOfServicesRef; } /** * Sets the value of the groupOfServicesRef property. * * @param value * allowed object is * {@link GroupOfServicesRefStructure } * */ public void setGroupOfServicesRef(GroupOfServicesRefStructure value) { this.groupOfServicesRef = value; } /** * Gets the value of the typeOfFareProductRef property. * * @return * possible object is * {@link TypeOfFareProductRefStructure } * */ public TypeOfFareProductRefStructure getTypeOfFareProductRef() { return typeOfFareProductRef; } /** * Sets the value of the typeOfFareProductRef property. * * @param value * allowed object is * {@link TypeOfFareProductRefStructure } * */ public void setTypeOfFareProductRef(TypeOfFareProductRefStructure value) { this.typeOfFareProductRef = value; } /** * Gets the value of the distributionChannelRef property. * * @return * possible object is * {@link DistributionChannelRefStructureElement } * */ public DistributionChannelRefStructureElement getDistributionChannelRef() { return distributionChannelRef; } /** * Sets the value of the distributionChannelRef property. * * @param value * allowed object is * {@link DistributionChannelRefStructureElement } * */ public void setDistributionChannelRef(DistributionChannelRefStructureElement value) { this.distributionChannelRef = value; } /** * Gets the value of the groupOfDistributionChannelsRef property. * * @return * possible object is * {@link GroupOfDistributionChannelsRefStructure } * */ public GroupOfDistributionChannelsRefStructure getGroupOfDistributionChannelsRef() { return groupOfDistributionChannelsRef; } /** * Sets the value of the groupOfDistributionChannelsRef property. * * @param value * allowed object is * {@link GroupOfDistributionChannelsRefStructure } * */ public void setGroupOfDistributionChannelsRef(GroupOfDistributionChannelsRefStructure value) { this.groupOfDistributionChannelsRef = value; } public FareTable_VersionStructure.Specifics withDirectionType(RelativeDirectionEnumeration value) { setDirectionType(value); return this; } public FareTable_VersionStructure.Specifics withRoutingType(RoutingTypeEnumeration value) { setRoutingType(value); return this; } public FareTable_VersionStructure.Specifics withFareClass(FareClassEnumeration value) { setFareClass(value); return this; } public FareTable_VersionStructure.Specifics withClassOfUseRef(ClassOfUseRef value) { setClassOfUseRef(value); return this; } public FareTable_VersionStructure.Specifics withFacilitySetRef(JAXBElement value) { setFacilitySetRef(value); return this; } public FareTable_VersionStructure.Specifics withTypeOfProductCategoryRef(TypeOfProductCategoryRefStructure value) { setTypeOfProductCategoryRef(value); return this; } public FareTable_VersionStructure.Specifics withTypeOfServiceRef(TypeOfServiceRefStructure value) { setTypeOfServiceRef(value); return this; } public FareTable_VersionStructure.Specifics withServiceJourneyRef(JAXBElement value) { setServiceJourneyRef(value); return this; } public FareTable_VersionStructure.Specifics withTrainNumberRef(TrainNumberRefStructure value) { setTrainNumberRef(value); return this; } public FareTable_VersionStructure.Specifics withGroupOfServicesRef(GroupOfServicesRefStructure value) { setGroupOfServicesRef(value); return this; } public FareTable_VersionStructure.Specifics withTypeOfFareProductRef(TypeOfFareProductRefStructure value) { setTypeOfFareProductRef(value); return this; } public FareTable_VersionStructure.Specifics withDistributionChannelRef(DistributionChannelRefStructureElement value) { setDistributionChannelRef(value); return this; } public FareTable_VersionStructure.Specifics withGroupOfDistributionChannelsRef(GroupOfDistributionChannelsRefStructure value) { setGroupOfDistributionChannelsRef(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