maia/.svn/pristine/95/95d758bb2354e2ad19afff19b9e...

115 lines
2.7 KiB
Plaintext
Executable File

package ec.gov.sri.wsconsultacontribuyente;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Clase Java para representanteLegal complex type.
*
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
*
* <pre>
* &lt;complexType name="representanteLegal">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="cargo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="identificacion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "representanteLegal", propOrder = {
"cargo",
"identificacion",
"nombre"
})
public class RepresentanteLegal {
protected String cargo;
protected String identificacion;
protected String nombre;
/**
* Obtiene el valor de la propiedad cargo.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCargo() {
return cargo;
}
/**
* Define el valor de la propiedad cargo.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCargo(String value) {
this.cargo = value;
}
/**
* Obtiene el valor de la propiedad identificacion.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdentificacion() {
return identificacion;
}
/**
* Define el valor de la propiedad identificacion.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdentificacion(String value) {
this.identificacion = value;
}
/**
* Obtiene el valor de la propiedad nombre.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNombre() {
return nombre;
}
/**
* Define el valor de la propiedad nombre.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNombre(String value) {
this.nombre = value;
}
}