VehicleRegistration.java

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


package gov.ojp.it.jxdm._3_0;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for anonymous complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType&gt;
 *   &lt;complexContent&gt;
 *     &lt;extension base="{http://www.it.ojp.gov/jxdm/3.0.3}PropertyRegistrationType"&gt;
 *       &lt;sequence&gt;
 *         &lt;element name="VehicleLicensePlateID" type="{http://www.it.ojp.gov/jxdm/3.0.3}IDType"/&gt;
 *         &lt;element name="VehicleRegistrationDecal" type="{http://www.it.ojp.gov/jxdm/3.0.3}DecalType"/&gt;
 *         &lt;element name="Vehicle" type="{http://www.it.ojp.gov/jxdm/3.0.3}VehicleType"/&gt;
 *       &lt;/sequence&gt;
 *     &lt;/extension&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "vehicleLicensePlateID",
    "vehicleRegistrationDecal",
    "vehicle"
})
@XmlRootElement(name = "VehicleRegistration")
public class VehicleRegistration
    extends PropertyRegistrationType
{

    @XmlElement(name = "VehicleLicensePlateID", required = true)
    protected IDType vehicleLicensePlateID;
    @XmlElement(name = "VehicleRegistrationDecal", required = true)
    protected DecalType vehicleRegistrationDecal;
    @XmlElement(name = "Vehicle", required = true)
    protected VehicleType vehicle;

    /**
     * Default no-arg constructor
     * 
     */
    public VehicleRegistration() {
        super();
    }

    /**
     * Fully-initialising value constructor
     * 
     */
    public VehicleRegistration(final String sourceIDText, final String id, final IDType vehicleLicensePlateID, final DecalType vehicleRegistrationDecal, final VehicleType vehicle) {
        super(sourceIDText, id);
        this.vehicleLicensePlateID = vehicleLicensePlateID;
        this.vehicleRegistrationDecal = vehicleRegistrationDecal;
        this.vehicle = vehicle;
    }

    /**
     * Gets the value of the vehicleLicensePlateID property.
     * 
     * @return
     *     possible object is
     *     {@link IDType }
     *     
     */
    public IDType getVehicleLicensePlateID() {
        return vehicleLicensePlateID;
    }

    /**
     * Sets the value of the vehicleLicensePlateID property.
     * 
     * @param value
     *     allowed object is
     *     {@link IDType }
     *     
     */
    public void setVehicleLicensePlateID(IDType value) {
        this.vehicleLicensePlateID = value;
    }

    /**
     * Gets the value of the vehicleRegistrationDecal property.
     * 
     * @return
     *     possible object is
     *     {@link DecalType }
     *     
     */
    public DecalType getVehicleRegistrationDecal() {
        return vehicleRegistrationDecal;
    }

    /**
     * Sets the value of the vehicleRegistrationDecal property.
     * 
     * @param value
     *     allowed object is
     *     {@link DecalType }
     *     
     */
    public void setVehicleRegistrationDecal(DecalType value) {
        this.vehicleRegistrationDecal = value;
    }

    /**
     * Gets the value of the vehicle property.
     * 
     * @return
     *     possible object is
     *     {@link VehicleType }
     *     
     */
    public VehicleType getVehicle() {
        return vehicle;
    }

    /**
     * Sets the value of the vehicle property.
     * 
     * @param value
     *     allowed object is
     *     {@link VehicleType }
     *     
     */
    public void setVehicle(VehicleType value) {
        this.vehicle = value;
    }

}