org.rutebanken.netex.model.GroupTicket_VersionStructure 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 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.XmlSchemaType;
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 GroupTicket_VersionStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GroupTicket_VersionStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}UsageParameter_VersionStructure">
* <sequence>
* <group ref="{http://www.netex.org.uk/netex}GroupTicketGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GroupTicket_VersionStructure", propOrder = {
"typeOfConcessionRef",
"minimumNumberOfPersons",
"maximumNumberOfPersons",
"minimumNumberOfCardHolders",
"companionProfiles",
"pricingBasis",
"maximumPersonsFree",
"maximumPersonsDiscounted",
"discountOnlyForFirstPerson",
"jointCheckIn",
"groupBookingFacility"
})
@XmlSeeAlso({
GroupTicket.class
})
public class GroupTicket_VersionStructure
extends UsageParameter_VersionStructure
{
@XmlElement(name = "TypeOfConcessionRef")
protected TypeOfConcessionRefStructure typeOfConcessionRef;
@XmlElement(name = "MinimumNumberOfPersons")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger minimumNumberOfPersons;
@XmlElement(name = "MaximumNumberOfPersons")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger maximumNumberOfPersons;
@XmlElement(name = "MinimumNumberOfCardHolders")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger minimumNumberOfCardHolders;
protected CompanionProfiles_RelStructure companionProfiles;
@XmlElement(name = "PricingBasis")
@XmlSchemaType(name = "normalizedString")
protected PerBasisEnumeration pricingBasis;
@XmlElement(name = "MaximumPersonsFree")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger maximumPersonsFree;
@XmlElement(name = "MaximumPersonsDiscounted")
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger maximumPersonsDiscounted;
@XmlElement(name = "DiscountOnlyForFirstPerson")
protected Boolean discountOnlyForFirstPerson;
@XmlElement(name = "JointCheckIn")
@XmlSchemaType(name = "normalizedString")
protected GroupCheckInEnumeration jointCheckIn;
@XmlElement(name = "GroupBookingFacility", defaultValue = "unknown")
@XmlSchemaType(name = "normalizedString")
protected GroupBookingEnumeration groupBookingFacility;
/**
* Gets the value of the typeOfConcessionRef property.
*
* @return
* possible object is
* {@link TypeOfConcessionRefStructure }
*
*/
public TypeOfConcessionRefStructure getTypeOfConcessionRef() {
return typeOfConcessionRef;
}
/**
* Sets the value of the typeOfConcessionRef property.
*
* @param value
* allowed object is
* {@link TypeOfConcessionRefStructure }
*
*/
public void setTypeOfConcessionRef(TypeOfConcessionRefStructure value) {
this.typeOfConcessionRef = value;
}
/**
* Gets the value of the minimumNumberOfPersons property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMinimumNumberOfPersons() {
return minimumNumberOfPersons;
}
/**
* Sets the value of the minimumNumberOfPersons property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMinimumNumberOfPersons(BigInteger value) {
this.minimumNumberOfPersons = value;
}
/**
* Gets the value of the maximumNumberOfPersons property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMaximumNumberOfPersons() {
return maximumNumberOfPersons;
}
/**
* Sets the value of the maximumNumberOfPersons property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMaximumNumberOfPersons(BigInteger value) {
this.maximumNumberOfPersons = value;
}
/**
* Gets the value of the minimumNumberOfCardHolders property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMinimumNumberOfCardHolders() {
return minimumNumberOfCardHolders;
}
/**
* Sets the value of the minimumNumberOfCardHolders property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMinimumNumberOfCardHolders(BigInteger value) {
this.minimumNumberOfCardHolders = value;
}
/**
* Gets the value of the companionProfiles property.
*
* @return
* possible object is
* {@link CompanionProfiles_RelStructure }
*
*/
public CompanionProfiles_RelStructure getCompanionProfiles() {
return companionProfiles;
}
/**
* Sets the value of the companionProfiles property.
*
* @param value
* allowed object is
* {@link CompanionProfiles_RelStructure }
*
*/
public void setCompanionProfiles(CompanionProfiles_RelStructure value) {
this.companionProfiles = value;
}
/**
* Gets the value of the pricingBasis property.
*
* @return
* possible object is
* {@link PerBasisEnumeration }
*
*/
public PerBasisEnumeration getPricingBasis() {
return pricingBasis;
}
/**
* Sets the value of the pricingBasis property.
*
* @param value
* allowed object is
* {@link PerBasisEnumeration }
*
*/
public void setPricingBasis(PerBasisEnumeration value) {
this.pricingBasis = value;
}
/**
* Gets the value of the maximumPersonsFree property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMaximumPersonsFree() {
return maximumPersonsFree;
}
/**
* Sets the value of the maximumPersonsFree property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMaximumPersonsFree(BigInteger value) {
this.maximumPersonsFree = value;
}
/**
* Gets the value of the maximumPersonsDiscounted property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMaximumPersonsDiscounted() {
return maximumPersonsDiscounted;
}
/**
* Sets the value of the maximumPersonsDiscounted property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMaximumPersonsDiscounted(BigInteger value) {
this.maximumPersonsDiscounted = value;
}
/**
* Gets the value of the discountOnlyForFirstPerson property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDiscountOnlyForFirstPerson() {
return discountOnlyForFirstPerson;
}
/**
* Sets the value of the discountOnlyForFirstPerson property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDiscountOnlyForFirstPerson(Boolean value) {
this.discountOnlyForFirstPerson = value;
}
/**
* Gets the value of the jointCheckIn property.
*
* @return
* possible object is
* {@link GroupCheckInEnumeration }
*
*/
public GroupCheckInEnumeration getJointCheckIn() {
return jointCheckIn;
}
/**
* Sets the value of the jointCheckIn property.
*
* @param value
* allowed object is
* {@link GroupCheckInEnumeration }
*
*/
public void setJointCheckIn(GroupCheckInEnumeration value) {
this.jointCheckIn = value;
}
/**
* Gets the value of the groupBookingFacility property.
*
* @return
* possible object is
* {@link GroupBookingEnumeration }
*
*/
public GroupBookingEnumeration getGroupBookingFacility() {
return groupBookingFacility;
}
/**
* Sets the value of the groupBookingFacility property.
*
* @param value
* allowed object is
* {@link GroupBookingEnumeration }
*
*/
public void setGroupBookingFacility(GroupBookingEnumeration value) {
this.groupBookingFacility = value;
}
public GroupTicket_VersionStructure withTypeOfConcessionRef(TypeOfConcessionRefStructure value) {
setTypeOfConcessionRef(value);
return this;
}
public GroupTicket_VersionStructure withMinimumNumberOfPersons(BigInteger value) {
setMinimumNumberOfPersons(value);
return this;
}
public GroupTicket_VersionStructure withMaximumNumberOfPersons(BigInteger value) {
setMaximumNumberOfPersons(value);
return this;
}
public GroupTicket_VersionStructure withMinimumNumberOfCardHolders(BigInteger value) {
setMinimumNumberOfCardHolders(value);
return this;
}
public GroupTicket_VersionStructure withCompanionProfiles(CompanionProfiles_RelStructure value) {
setCompanionProfiles(value);
return this;
}
public GroupTicket_VersionStructure withPricingBasis(PerBasisEnumeration value) {
setPricingBasis(value);
return this;
}
public GroupTicket_VersionStructure withMaximumPersonsFree(BigInteger value) {
setMaximumPersonsFree(value);
return this;
}
public GroupTicket_VersionStructure withMaximumPersonsDiscounted(BigInteger value) {
setMaximumPersonsDiscounted(value);
return this;
}
public GroupTicket_VersionStructure withDiscountOnlyForFirstPerson(Boolean value) {
setDiscountOnlyForFirstPerson(value);
return this;
}
public GroupTicket_VersionStructure withJointCheckIn(GroupCheckInEnumeration value) {
setJointCheckIn(value);
return this;
}
public GroupTicket_VersionStructure withGroupBookingFacility(GroupBookingEnumeration value) {
setGroupBookingFacility(value);
return this;
}
@Override
public GroupTicket_VersionStructure withUrl(String value) {
setUrl(value);
return this;
}
@Override
public GroupTicket_VersionStructure withTypeOfUsageParameterRef(TypeOfUsageParameterRefStructure value) {
setTypeOfUsageParameterRef(value);
return this;
}
@Override
public GroupTicket_VersionStructure withPrices(UsageParameterPrices_RelStructure value) {
setPrices(value);
return this;
}
@Override
public GroupTicket_VersionStructure withName(MultilingualString value) {
setName(value);
return this;
}
@Override
public GroupTicket_VersionStructure withDescription(MultilingualString value) {
setDescription(value);
return this;
}
@Override
public GroupTicket_VersionStructure withAlternativeNames(AlternativeNames_RelStructure value) {
setAlternativeNames(value);
return this;
}
@Override
public GroupTicket_VersionStructure withNoticeAssignments(NoticeAssignments_RelStructure value) {
setNoticeAssignments(value);
return this;
}
@Override
public GroupTicket_VersionStructure withPricingServiceRef(PricingServiceRefStructure value) {
setPricingServiceRef(value);
return this;
}
@Override
public GroupTicket_VersionStructure withPricingRuleRef(JAXBElement extends PricingRuleRefStructure> value) {
setPricingRuleRef(value);
return this;
}
@Override
public GroupTicket_VersionStructure withPriceGroups(PriceGroups_RelStructure value) {
setPriceGroups(value);
return this;
}
@Override
public GroupTicket_VersionStructure withFareTables(FareTables_RelStructure value) {
setFareTables(value);
return this;
}
@Override
public GroupTicket_VersionStructure withKeyList(KeyListStructure value) {
setKeyList(value);
return this;
}
@Override
public GroupTicket_VersionStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
@Override
public GroupTicket_VersionStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
@Override
public GroupTicket_VersionStructure withAlternativeTexts(AlternativeTexts_RelStructure value) {
setAlternativeTexts(value);
return this;
}
@Override
public GroupTicket_VersionStructure withResponsibilitySetRef(String value) {
setResponsibilitySetRef(value);
return this;
}
@Override
public GroupTicket_VersionStructure withValidityConditions(ValidityConditions_RelStructure value) {
setValidityConditions(value);
return this;
}
@Override
public GroupTicket_VersionStructure withValidBetween(ValidBetween... values) {
if (values!= null) {
for (ValidBetween value: values) {
getValidBetween().add(value);
}
}
return this;
}
@Override
public GroupTicket_VersionStructure withValidBetween(Collection values) {
if (values!= null) {
getValidBetween().addAll(values);
}
return this;
}
@Override
public GroupTicket_VersionStructure withDataSourceRef(String value) {
setDataSourceRef(value);
return this;
}
@Override
public GroupTicket_VersionStructure withCreated(OffsetDateTime value) {
setCreated(value);
return this;
}
@Override
public GroupTicket_VersionStructure withChanged(OffsetDateTime value) {
setChanged(value);
return this;
}
@Override
public GroupTicket_VersionStructure withModification(ModificationEnumeration value) {
setModification(value);
return this;
}
@Override
public GroupTicket_VersionStructure withVersion(String value) {
setVersion(value);
return this;
}
@Override
public GroupTicket_VersionStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) {
setStatus_BasicModificationDetailsGroup(value);
return this;
}
@Override
public GroupTicket_VersionStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) {
setDerivedFromVersionRef_BasicModificationDetailsGroup(value);
return this;
}
@Override
public GroupTicket_VersionStructure withCompatibleWithVersionFrameVersionRef(String value) {
setCompatibleWithVersionFrameVersionRef(value);
return this;
}
@Override
public GroupTicket_VersionStructure withDerivedFromObjectRef(String value) {
setDerivedFromObjectRef(value);
return this;
}
@Override
public GroupTicket_VersionStructure withNameOfClass(String value) {
setNameOfClass(value);
return this;
}
@Override
public GroupTicket_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);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy