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

uk.org.siri.siri20.FacilityStatusStructure Maven / Gradle / Ivy

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:39 PM UTC 
//


package uk.org.siri.siri20;

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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import uk.org.acbs.siri20.AccessibilityAssessmentStructure;


/**
 * Descriprion of the status of a MONITORED FACILITY.
 * 
 * 

Java class for FacilityStatusStructure complex type. * *

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

 * <complexType name="FacilityStatusStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Status" type="{http://www.siri.org.uk/siri}FacilityStatusEnumeration"/>
 *         <element name="Description" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="AccessibilityAssessment" type="{http://www.ifopt.org.uk/acsb}AccessibilityAssessmentStructure" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FacilityStatusStructure", propOrder = { "status", "descriptions", "accessibilityAssessment", "extensions" }) public class FacilityStatusStructure implements Serializable { @XmlElement(name = "Status", required = true) @XmlSchemaType(name = "NMTOKEN") protected FacilityStatusEnumeration status; @XmlElement(name = "Description") protected List descriptions; @XmlElement(name = "AccessibilityAssessment") protected AccessibilityAssessmentStructure accessibilityAssessment; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the status property. * * @return * possible object is * {@link FacilityStatusEnumeration } * */ public FacilityStatusEnumeration getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link FacilityStatusEnumeration } * */ public void setStatus(FacilityStatusEnumeration value) { this.status = value; } /** * Gets the value of the descriptions 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 descriptions property. * *

* For example, to add a new item, do as follows: *

     *    getDescriptions().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } * * */ public List getDescriptions() { if (descriptions == null) { descriptions = new ArrayList(); } return this.descriptions; } /** * Gets the value of the accessibilityAssessment property. * * @return * possible object is * {@link AccessibilityAssessmentStructure } * */ public AccessibilityAssessmentStructure getAccessibilityAssessment() { return accessibilityAssessment; } /** * Sets the value of the accessibilityAssessment property. * * @param value * allowed object is * {@link AccessibilityAssessmentStructure } * */ public void setAccessibilityAssessment(AccessibilityAssessmentStructure value) { this.accessibilityAssessment = 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