|
package art.servers.gost.atex5.generated;
|
|
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>Clase Java para anonymous complex type.
|
*
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
*
|
* <pre>
|
* <complexType>
|
* <complexContent>
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
* <sequence>
|
* <element name="matricula" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
* <element name="fecha" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
* <element name="aplicacion" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "", propOrder = {
|
"matricula",
|
"fecha",
|
"aplicacion"
|
})
|
@XmlRootElement(name = "CriteriosConsultaVehiculoFecha")
|
public class CriteriosConsultaVehiculoFecha {
|
|
@XmlElement(required = true)
|
protected String matricula;
|
@XmlElement(required = true)
|
protected String fecha;
|
@XmlElement(required = true)
|
protected String aplicacion;
|
|
/**
|
* Obtiene el valor de la propiedad matricula.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getMatricula() {
|
return matricula;
|
}
|
|
/**
|
* Define el valor de la propiedad matricula.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setMatricula(String value) {
|
this.matricula = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad fecha.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getFecha() {
|
return fecha;
|
}
|
|
/**
|
* Define el valor de la propiedad fecha.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setFecha(String value) {
|
this.fecha = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad aplicacion.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getAplicacion() {
|
return aplicacion;
|
}
|
|
/**
|
* Define el valor de la propiedad aplicacion.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setAplicacion(String value) {
|
this.aplicacion = value;
|
}
|
|
}
|