maia/.svn/pristine/4c/4c993852a3c9ac861af5d5e57de...

61 lines
1.3 KiB
Plaintext
Executable File

package com.fp.frontend.webservices.snap.ruc;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Clase Java para consultarRuc complex type.
*
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
*
* <pre>
* &lt;complexType name="consultarRuc">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="ruc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "consultarRuc", propOrder = {
"ruc"
})
public class ConsultarRuc {
protected String ruc;
/**
* Obtiene el valor de la propiedad ruc.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRuc() {
return ruc;
}
/**
* Define el valor de la propiedad ruc.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRuc(String value) {
this.ruc = value;
}
}