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

uk.org.siri.siri21.AnnotatedFacilityStructure 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:41 PM UTC 
//


package uk.org.siri.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.XmlType;


/**
 * Summary information about Facility. Used in DISCOVERY.
 * 
 * 

Java class for AnnotatedFacilityStructure complex type. * *

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

 * <complexType name="AnnotatedFacilityStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.siri.org.uk/siri}FacilityRef"/>
 *         <element name="Monitored" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="Facility" type="{http://www.siri.org.uk/siri}FacilityStructure" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnnotatedFacilityStructure", propOrder = { "facilityRef", "monitored", "facility" }) public class AnnotatedFacilityStructure implements Serializable { @XmlElement(name = "FacilityRef", required = true) protected FacilityRef facilityRef; @XmlElement(name = "Monitored", defaultValue = "true") protected Boolean monitored; @XmlElement(name = "Facility") protected FacilityStructure facility; /** * Gets the value of the facilityRef property. * * @return * possible object is * {@link FacilityRef } * */ public FacilityRef getFacilityRef() { return facilityRef; } /** * Sets the value of the facilityRef property. * * @param value * allowed object is * {@link FacilityRef } * */ public void setFacilityRef(FacilityRef value) { this.facilityRef = value; } /** * Gets the value of the monitored property. * * @return * possible object is * {@link Boolean } * */ public Boolean isMonitored() { return monitored; } /** * Sets the value of the monitored property. * * @param value * allowed object is * {@link Boolean } * */ public void setMonitored(Boolean value) { this.monitored = value; } /** * Gets the value of the facility property. * * @return * possible object is * {@link FacilityStructure } * */ public FacilityStructure getFacility() { return facility; } /** * Sets the value of the facility property. * * @param value * allowed object is * {@link FacilityStructure } * */ public void setFacility(FacilityStructure value) { this.facility = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy