![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.acbs.siri21.AccessibilityLimitationStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siri-java-model Show documentation
Show all versions of siri-java-model Show documentation
Java objects based on the public SIRI XSDs
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2025.01.07 at 02:19:41 PM UTC
//
package uk.org.acbs.siri21;
import java.io.Serializable;
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 uk.org.ifopt.siri21.Extensions;
import uk.org.ifopt.siri21.ValidityConditionStructure;
/**
* Type for limitation on navigation.
*
* Java class for AccessibilityLimitationStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccessibilityLimitationStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="LimitationId" type="{http://www.ifopt.org.uk/acsb}LimitationIdType" minOccurs="0"/>
* <element name="ValidityCondition" type="{http://www.ifopt.org.uk/ifopt}ValidityConditionStructure" minOccurs="0"/>
* <group ref="{http://www.ifopt.org.uk/acsb}MobilityLimitationGroup"/>
* <group ref="{http://www.ifopt.org.uk/acsb}SensoryLimitationGroup"/>
* <element ref="{http://www.ifopt.org.uk/ifopt}Extensions" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccessibilityLimitationStructure", propOrder = {
"limitationId",
"validityCondition",
"wheelchairAccess",
"stepFreeAccess",
"escalatorFreeAccess",
"liftFreeAccess",
"audibleSignalsAvailable",
"visualSignsAvailable",
"extensions"
})
public class AccessibilityLimitationStructure
implements Serializable
{
@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;
}
/**
* Whether a PLACE / SITE ELEMENT has Audible signals for the visually impaired. Default is 'false'.
*
* @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;
}
/**
* Whether a PLACE / SITE ELEMENT has Visual signals for the hearing impaired. Default is 'unknown'.
*
* @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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy