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

uk.org.siri.siri20.AbstractCapabilitiesStructure 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Type for Capabilities of StopMonitopring Service.
 * 
 * 

Java class for AbstractCapabilitiesStructure complex type. * *

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

 * <complexType name="AbstractCapabilitiesStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="GeneralInteraction" type="{http://www.siri.org.uk/siri}CapabilityGeneralInteractionStructure" minOccurs="0"/>
 *         <element name="TransportDescription" type="{http://www.siri.org.uk/siri}TransportDescriptionStructure" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractCapabilitiesStructure", propOrder = { "generalInteraction", "transportDescription" }) @XmlSeeAlso({ SituationExchangeServiceCapabilities.class, FacilityMonitoringServiceCapabilities.class, GeneralMessageServiceCapabilities.class, ConnectionMonitoringServiceCapabilities.class, ConnectionTimetableServiceCapabilities.class, VehicleMonitoringServiceCapabilities.class, StopMonitoringServiceCapabilities.class, StopTimetableServiceCapabilities.class, EstimatedTimetableServiceCapabilities.class, ProductionTimetableServiceCapabilities.class }) public class AbstractCapabilitiesStructure implements Serializable { @XmlElement(name = "GeneralInteraction") protected CapabilityGeneralInteractionStructure generalInteraction; @XmlElement(name = "TransportDescription") protected TransportDescriptionStructure transportDescription; /** * Gets the value of the generalInteraction property. * * @return * possible object is * {@link CapabilityGeneralInteractionStructure } * */ public CapabilityGeneralInteractionStructure getGeneralInteraction() { return generalInteraction; } /** * Sets the value of the generalInteraction property. * * @param value * allowed object is * {@link CapabilityGeneralInteractionStructure } * */ public void setGeneralInteraction(CapabilityGeneralInteractionStructure value) { this.generalInteraction = value; } /** * Gets the value of the transportDescription property. * * @return * possible object is * {@link TransportDescriptionStructure } * */ public TransportDescriptionStructure getTransportDescription() { return transportDescription; } /** * Sets the value of the transportDescription property. * * @param value * allowed object is * {@link TransportDescriptionStructure } * */ public void setTransportDescription(TransportDescriptionStructure value) { this.transportDescription = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy