Dmv.java

  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
  3. // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2019.08.22 at 12:18:25 PM UTC
  6. //


  7. package info.ejava.projects.edmv._1;

  8. import javax.xml.bind.annotation.XmlAccessType;
  9. import javax.xml.bind.annotation.XmlAccessorType;
  10. import javax.xml.bind.annotation.XmlRootElement;
  11. import javax.xml.bind.annotation.XmlType;


  12. /**
  13.  * <p>Java class for anonymous complex type.
  14.  *
  15.  * <p>The following schema fragment specifies the expected content contained within this class.
  16.  *
  17.  * <pre>
  18.  * &lt;complexType&gt;
  19.  *   &lt;complexContent&gt;
  20.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  21.  *       &lt;sequence&gt;
  22.  *         &lt;element name="people" type="{http://ejava.info/projects/eDmv/1.0}PersonsType" minOccurs="0"/&gt;
  23.  *         &lt;element name="vehicleRegistrations" type="{http://ejava.info/projects/eDmv/1.0}VehicleRegistrationsType" minOccurs="0"/&gt;
  24.  *       &lt;/sequence&gt;
  25.  *     &lt;/restriction&gt;
  26.  *   &lt;/complexContent&gt;
  27.  * &lt;/complexType&gt;
  28.  * </pre>
  29.  *
  30.  *
  31.  */
  32. @XmlAccessorType(XmlAccessType.FIELD)
  33. @XmlType(name = "", propOrder = {
  34.     "people",
  35.     "vehicleRegistrations"
  36. })
  37. @XmlRootElement(name = "dmv")
  38. public class Dmv {

  39.     protected PersonsType people;
  40.     protected VehicleRegistrationsType vehicleRegistrations;

  41.     /**
  42.      * Default no-arg constructor
  43.      *
  44.      */
  45.     public Dmv() {
  46.         super();
  47.     }

  48.     /**
  49.      * Fully-initialising value constructor
  50.      *
  51.      */
  52.     public Dmv(final PersonsType people, final VehicleRegistrationsType vehicleRegistrations) {
  53.         this.people = people;
  54.         this.vehicleRegistrations = vehicleRegistrations;
  55.     }

  56.     /**
  57.      * Gets the value of the people property.
  58.      *
  59.      * @return
  60.      *     possible object is
  61.      *     {@link PersonsType }
  62.      *    
  63.      */
  64.     public PersonsType getPeople() {
  65.         return people;
  66.     }

  67.     /**
  68.      * Sets the value of the people property.
  69.      *
  70.      * @param value
  71.      *     allowed object is
  72.      *     {@link PersonsType }
  73.      *    
  74.      */
  75.     public void setPeople(PersonsType value) {
  76.         this.people = value;
  77.     }

  78.     /**
  79.      * Gets the value of the vehicleRegistrations property.
  80.      *
  81.      * @return
  82.      *     possible object is
  83.      *     {@link VehicleRegistrationsType }
  84.      *    
  85.      */
  86.     public VehicleRegistrationsType getVehicleRegistrations() {
  87.         return vehicleRegistrations;
  88.     }

  89.     /**
  90.      * Sets the value of the vehicleRegistrations property.
  91.      *
  92.      * @param value
  93.      *     allowed object is
  94.      *     {@link VehicleRegistrationsType }
  95.      *    
  96.      */
  97.     public void setVehicleRegistrations(VehicleRegistrationsType value) {
  98.         this.vehicleRegistrations = value;
  99.     }

  100. }