ModelIdReferralType.java

  1. //
  2. // This file was generated by the Eclipse Implementation of JAXB, v2.3.7
  3. // See https://eclipse-ee4j.github.io/jaxb-ri
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2024.08.29 at 06:50:16 PM CEST
  6. //


  7. package org.opentrafficsim.xml.generated;

  8. import java.io.Serializable;
  9. import javax.annotation.Generated;
  10. import javax.xml.bind.annotation.XmlAccessType;
  11. import javax.xml.bind.annotation.XmlAccessorType;
  12. import javax.xml.bind.annotation.XmlAttribute;
  13. import javax.xml.bind.annotation.XmlType;
  14. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  15. import org.opentrafficsim.xml.bindings.StringAdapter;
  16. import org.opentrafficsim.xml.bindings.types.StringType;


  17. /**
  18.  * <p>Java class for ModelIdReferralType complex type.
  19.  *
  20.  * <p>The following schema fragment specifies the expected content contained within this class.
  21.  *
  22.  * <pre>
  23.  * &lt;complexType name="ModelIdReferralType"&gt;
  24.  *   &lt;complexContent&gt;
  25.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  26.  *       &lt;attribute name="Id" type="{http://www.opentrafficsim.org/ots}IdType" /&gt;
  27.  *       &lt;attribute name="ModelId" type="{http://www.opentrafficsim.org/ots}string" /&gt;
  28.  *     &lt;/restriction&gt;
  29.  *   &lt;/complexContent&gt;
  30.  * &lt;/complexType&gt;
  31.  * </pre>
  32.  *
  33.  *
  34.  */
  35. @XmlAccessorType(XmlAccessType.FIELD)
  36. @XmlType(name = "ModelIdReferralType")
  37. @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
  38. public class ModelIdReferralType
  39.     implements Serializable
  40. {

  41.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
  42.     private final static long serialVersionUID = 10102L;
  43.     @XmlAttribute(name = "Id")
  44.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
  45.     protected String id;
  46.     @XmlAttribute(name = "ModelId")
  47.     @XmlJavaTypeAdapter(StringAdapter.class)
  48.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
  49.     protected StringType modelId;

  50.     /**
  51.      * Gets the value of the id property.
  52.      *
  53.      * @return
  54.      *     possible object is
  55.      *     {@link String }
  56.      *    
  57.      */
  58.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
  59.     public String getId() {
  60.         return id;
  61.     }

  62.     /**
  63.      * Sets the value of the id property.
  64.      *
  65.      * @param value
  66.      *     allowed object is
  67.      *     {@link String }
  68.      *    
  69.      */
  70.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
  71.     public void setId(String value) {
  72.         this.id = value;
  73.     }

  74.     /**
  75.      * Gets the value of the modelId property.
  76.      *
  77.      * @return
  78.      *     possible object is
  79.      *     {@link String }
  80.      *    
  81.      */
  82.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
  83.     public StringType getModelId() {
  84.         return modelId;
  85.     }

  86.     /**
  87.      * Sets the value of the modelId property.
  88.      *
  89.      * @param value
  90.      *     allowed object is
  91.      *     {@link String }
  92.      *    
  93.      */
  94.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
  95.     public void setModelId(StringType value) {
  96.         this.modelId = value;
  97.     }

  98. }