115 lines
2.7 KiB
Plaintext
Executable File
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>
|
|
* <complexType name="representanteLegal">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="cargo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="identificacion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* <element name="nombre" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </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;
|
|
}
|
|
|
|
}
|