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; /** *
Clase Java para anonymous complex type. * *
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="xml" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"xml"
})
@XmlRootElement(name = "CriteriosConsultaMasivaVehiculos")
public class CriteriosConsultaMasivaVehiculos {
@XmlElement(required = true)
protected String xml;
/**
* Obtiene el valor de la propiedad xml.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXml() {
return xml;
}
/**
* Define el valor de la propiedad xml.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXml(String value) {
this.xml = value;
}
}