|
package art.servers.gost.atex5.generated;
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
import javax.xml.bind.annotation.XmlAccessorType;
|
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" minOccurs="0"/>
|
* <element name="bastidor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="nive" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* <element name="tipoDocumento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
* </sequence>
|
* </restriction>
|
* </complexContent>
|
* </complexType>
|
* </pre>
|
*
|
*
|
*/
|
@XmlAccessorType(XmlAccessType.FIELD)
|
@XmlType(name = "", propOrder = {
|
"matricula",
|
"bastidor",
|
"nive",
|
"tipoDocumento"
|
})
|
@XmlRootElement(name = "CriteriosConsultaDocumento")
|
public class CriteriosConsultaDocumento {
|
|
protected String matricula;
|
protected String bastidor;
|
protected String nive;
|
protected String tipoDocumento;
|
|
/**
|
* 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 bastidor.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getBastidor() {
|
return bastidor;
|
}
|
|
/**
|
* Define el valor de la propiedad bastidor.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setBastidor(String value) {
|
this.bastidor = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad nive.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getNive() {
|
return nive;
|
}
|
|
/**
|
* Define el valor de la propiedad nive.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setNive(String value) {
|
this.nive = value;
|
}
|
|
/**
|
* Obtiene el valor de la propiedad tipoDocumento.
|
*
|
* @return
|
* possible object is
|
* {@link String }
|
*
|
*/
|
public String getTipoDocumento() {
|
return tipoDocumento;
|
}
|
|
/**
|
* Define el valor de la propiedad tipoDocumento.
|
*
|
* @param value
|
* allowed object is
|
* {@link String }
|
*
|
*/
|
public void setTipoDocumento(String value) {
|
this.tipoDocumento = value;
|
}
|
|
}
|