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

uk.org.ifopt.acsb.AccessibilityLimitationStructure 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 uk.org.ifopt.acsb;

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.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;
import uk.org.ifopt.ifopt.Extensions;
import uk.org.ifopt.ifopt.ValidityConditionStructure;


/**
 * 

Java class for AccessibilityLimitationStructure complex type

. * *

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

* *
{@code
 * 
 *   
 *     
 *       
 *         
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AccessibilityLimitationStructure", propOrder = { "limitationId", "validityCondition", "wheelchairAccess", "stepFreeAccess", "escalatorFreeAccess", "liftFreeAccess", "audibleSignalsAvailable", "visualSignsAvailable", "extensions" }) public class AccessibilityLimitationStructure { @XmlElement(name = "LimitationId") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String limitationId; @XmlElement(name = "ValidityCondition") protected ValidityConditionStructure validityCondition; @XmlElement(name = "WheelchairAccess", required = true, defaultValue = "false") protected AccessibilityStructure wheelchairAccess; @XmlElement(name = "StepFreeAccess", defaultValue = "unknown") protected AccessibilityStructure stepFreeAccess; @XmlElement(name = "EscalatorFreeAccess", defaultValue = "unknown") protected AccessibilityStructure escalatorFreeAccess; @XmlElement(name = "LiftFreeAccess", defaultValue = "unknown") protected AccessibilityStructure liftFreeAccess; @XmlElement(name = "AudibleSignalsAvailable", defaultValue = "false") protected AccessibilityStructure audibleSignalsAvailable; @XmlElement(name = "VisualSignsAvailable", defaultValue = "unknown") protected AccessibilityStructure visualSignsAvailable; @XmlElement(name = "Extensions", namespace = "http://www.ifopt.org.uk/ifopt") protected Extensions extensions; /** * Gets the value of the limitationId property. * * @return * possible object is * {@link String } * */ public String getLimitationId() { return limitationId; } /** * Sets the value of the limitationId property. * * @param value * allowed object is * {@link String } * */ public void setLimitationId(String value) { this.limitationId = value; } /** * Gets the value of the validityCondition property. * * @return * possible object is * {@link ValidityConditionStructure } * */ public ValidityConditionStructure getValidityCondition() { return validityCondition; } /** * Sets the value of the validityCondition property. * * @param value * allowed object is * {@link ValidityConditionStructure } * */ public void setValidityCondition(ValidityConditionStructure value) { this.validityCondition = value; } /** * Gets the value of the wheelchairAccess property. * * @return * possible object is * {@link AccessibilityStructure } * */ public AccessibilityStructure getWheelchairAccess() { return wheelchairAccess; } /** * Sets the value of the wheelchairAccess property. * * @param value * allowed object is * {@link AccessibilityStructure } * */ public void setWheelchairAccess(AccessibilityStructure value) { this.wheelchairAccess = value; } /** * Gets the value of the stepFreeAccess property. * * @return * possible object is * {@link AccessibilityStructure } * */ public AccessibilityStructure getStepFreeAccess() { return stepFreeAccess; } /** * Sets the value of the stepFreeAccess property. * * @param value * allowed object is * {@link AccessibilityStructure } * */ public void setStepFreeAccess(AccessibilityStructure value) { this.stepFreeAccess = value; } /** * Gets the value of the escalatorFreeAccess property. * * @return * possible object is * {@link AccessibilityStructure } * */ public AccessibilityStructure getEscalatorFreeAccess() { return escalatorFreeAccess; } /** * Sets the value of the escalatorFreeAccess property. * * @param value * allowed object is * {@link AccessibilityStructure } * */ public void setEscalatorFreeAccess(AccessibilityStructure value) { this.escalatorFreeAccess = value; } /** * Gets the value of the liftFreeAccess property. * * @return * possible object is * {@link AccessibilityStructure } * */ public AccessibilityStructure getLiftFreeAccess() { return liftFreeAccess; } /** * Sets the value of the liftFreeAccess property. * * @param value * allowed object is * {@link AccessibilityStructure } * */ public void setLiftFreeAccess(AccessibilityStructure value) { this.liftFreeAccess = value; } /** * Gets the value of the audibleSignalsAvailable property. * * @return * possible object is * {@link AccessibilityStructure } * */ public AccessibilityStructure getAudibleSignalsAvailable() { return audibleSignalsAvailable; } /** * Sets the value of the audibleSignalsAvailable property. * * @param value * allowed object is * {@link AccessibilityStructure } * */ public void setAudibleSignalsAvailable(AccessibilityStructure value) { this.audibleSignalsAvailable = value; } /** * Gets the value of the visualSignsAvailable property. * * @return * possible object is * {@link AccessibilityStructure } * */ public AccessibilityStructure getVisualSignsAvailable() { return visualSignsAvailable; } /** * Sets the value of the visualSignsAvailable property. * * @param value * allowed object is * {@link AccessibilityStructure } * */ public void setVisualSignsAvailable(AccessibilityStructure value) { this.visualSignsAvailable = value; } /** * Gets the value of the extensions property. * * @return * possible object is * {@link Extensions } * */ public Extensions getExtensions() { return extensions; } /** * Sets the value of the extensions property. * * @param value * allowed object is * {@link Extensions } * */ public void setExtensions(Extensions value) { this.extensions = value; } public AccessibilityLimitationStructure withLimitationId(String value) { setLimitationId(value); return this; } public AccessibilityLimitationStructure withValidityCondition(ValidityConditionStructure value) { setValidityCondition(value); return this; } public AccessibilityLimitationStructure withWheelchairAccess(AccessibilityStructure value) { setWheelchairAccess(value); return this; } public AccessibilityLimitationStructure withStepFreeAccess(AccessibilityStructure value) { setStepFreeAccess(value); return this; } public AccessibilityLimitationStructure withEscalatorFreeAccess(AccessibilityStructure value) { setEscalatorFreeAccess(value); return this; } public AccessibilityLimitationStructure withLiftFreeAccess(AccessibilityStructure value) { setLiftFreeAccess(value); return this; } public AccessibilityLimitationStructure withAudibleSignalsAvailable(AccessibilityStructure value) { setAudibleSignalsAvailable(value); return this; } public AccessibilityLimitationStructure withVisualSignsAvailable(AccessibilityStructure value) { setVisualSignsAvailable(value); return this; } public AccessibilityLimitationStructure withExtensions(Extensions value) { setExtensions(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