![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.acbs.siri21.AccessibilityAssessmentStructure Maven / Gradle / Ivy
Show all versions of siri-java-model Show documentation
//
// 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 java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import uk.org.ifopt.siri21.Extensions;
/**
* Type for Assesment.
*
* Java class for AccessibilityAssessmentStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccessibilityAssessmentStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MobilityImpairedAccess" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="Limitations" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="AccessibilityLimitation" type="{http://www.ifopt.org.uk/acsb}AccessibilityLimitationStructure" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="Suitabilities" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Suitability" type="{http://www.ifopt.org.uk/acsb}SuitabilityStructure" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element ref="{http://www.ifopt.org.uk/ifopt}Extensions" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccessibilityAssessmentStructure", propOrder = {
"mobilityImpairedAccess",
"limitations",
"suitabilities",
"extensions"
})
public class AccessibilityAssessmentStructure
implements Serializable
{
@XmlElement(name = "MobilityImpairedAccess")
protected boolean mobilityImpairedAccess;
@XmlElement(name = "Limitations")
protected AccessibilityAssessmentStructure.Limitations limitations;
@XmlElement(name = "Suitabilities")
protected AccessibilityAssessmentStructure.Suitabilities suitabilities;
@XmlElement(name = "Extensions", namespace = "http://www.ifopt.org.uk/ifopt")
protected Extensions extensions;
/**
* Gets the value of the mobilityImpairedAccess property.
*
*/
public boolean isMobilityImpairedAccess() {
return mobilityImpairedAccess;
}
/**
* Sets the value of the mobilityImpairedAccess property.
*
*/
public void setMobilityImpairedAccess(boolean value) {
this.mobilityImpairedAccess = value;
}
/**
* Gets the value of the limitations property.
*
* @return
* possible object is
* {@link AccessibilityAssessmentStructure.Limitations }
*
*/
public AccessibilityAssessmentStructure.Limitations getLimitations() {
return limitations;
}
/**
* Sets the value of the limitations property.
*
* @param value
* allowed object is
* {@link AccessibilityAssessmentStructure.Limitations }
*
*/
public void setLimitations(AccessibilityAssessmentStructure.Limitations value) {
this.limitations = value;
}
/**
* Gets the value of the suitabilities property.
*
* @return
* possible object is
* {@link AccessibilityAssessmentStructure.Suitabilities }
*
*/
public AccessibilityAssessmentStructure.Suitabilities getSuitabilities() {
return suitabilities;
}
/**
* Sets the value of the suitabilities property.
*
* @param value
* allowed object is
* {@link AccessibilityAssessmentStructure.Suitabilities }
*
*/
public void setSuitabilities(AccessibilityAssessmentStructure.Suitabilities value) {
this.suitabilities = 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;
}
/**
* 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>
* <element name="AccessibilityLimitation" type="{http://www.ifopt.org.uk/acsb}AccessibilityLimitationStructure" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"accessibilityLimitations"
})
public static class Limitations
implements Serializable
{
@XmlElement(name = "AccessibilityLimitation", required = true)
protected List accessibilityLimitations;
/**
* Gets the value of the accessibilityLimitations property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the accessibilityLimitations property.
*
*
* For example, to add a new item, do as follows:
*
* getAccessibilityLimitations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AccessibilityLimitationStructure }
*
*
*/
public List getAccessibilityLimitations() {
if (accessibilityLimitations == null) {
accessibilityLimitations = new ArrayList();
}
return this.accessibilityLimitations;
}
}
/**
* 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>
* <element name="Suitability" type="{http://www.ifopt.org.uk/acsb}SuitabilityStructure" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"suitabilities"
})
public static class Suitabilities
implements Serializable
{
@XmlElement(name = "Suitability", required = true)
protected List suitabilities;
/**
* Gets the value of the suitabilities property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the suitabilities property.
*
*
* For example, to add a new item, do as follows:
*
* getSuitabilities().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SuitabilityStructure }
*
*
*/
public List getSuitabilities() {
if (suitabilities == null) {
suitabilities = new ArrayList();
}
return this.suitabilities;
}
}
}