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

uk.org.ifopt.siri20.AbstractEquipmentStructure 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.ifopt.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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import uk.org.siri.siri20.NaturalLanguageStringStructure;


/**
 * Type for abstract EQUIPMENT.
 * 
 * 

Java class for AbstractEquipmentStructure complex type. * *

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

 * <complexType name="AbstractEquipmentStructure">
 *   <complexContent>
 *     <extension base="{http://www.ifopt.org.uk/ifopt}DataManagedObjectStructure">
 *       <sequence>
 *         <group ref="{http://www.ifopt.org.uk/ifopt}AbstractEquipmentGroup"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractEquipmentStructure", propOrder = { "equipmentId", "equipmentName", "typeOfEquipment" }) @XmlSeeAlso({ InstalledEquipmentStructure.class }) public abstract class AbstractEquipmentStructure extends DataManagedObjectStructure implements Serializable { @XmlElement(name = "EquipmentId", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String equipmentId; @XmlElement(name = "EquipmentName") protected NaturalLanguageStringStructure equipmentName; @XmlElement(name = "TypeOfEquipment") protected EquipmentTypeRefStructure typeOfEquipment; /** * Gets the value of the equipmentId property. * * @return * possible object is * {@link String } * */ public String getEquipmentId() { return equipmentId; } /** * Sets the value of the equipmentId property. * * @param value * allowed object is * {@link String } * */ public void setEquipmentId(String value) { this.equipmentId = value; } /** * Gets the value of the equipmentName property. * * @return * possible object is * {@link NaturalLanguageStringStructure } * */ public NaturalLanguageStringStructure getEquipmentName() { return equipmentName; } /** * Sets the value of the equipmentName property. * * @param value * allowed object is * {@link NaturalLanguageStringStructure } * */ public void setEquipmentName(NaturalLanguageStringStructure value) { this.equipmentName = value; } /** * Gets the value of the typeOfEquipment property. * * @return * possible object is * {@link EquipmentTypeRefStructure } * */ public EquipmentTypeRefStructure getTypeOfEquipment() { return typeOfEquipment; } /** * Sets the value of the typeOfEquipment property. * * @param value * allowed object is * {@link EquipmentTypeRefStructure } * */ public void setTypeOfEquipment(EquipmentTypeRefStructure value) { this.typeOfEquipment = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy