63 lines
1.7 KiB
Plaintext
Executable File
63 lines
1.7 KiB
Plaintext
Executable File
|
|
package ec.gob.bsg.accesobsgservice;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
/**
|
|
* <p>Clase Java para ValidarPermiso complex type.
|
|
*
|
|
* <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
|
|
*
|
|
* <pre>
|
|
* <complexType name="ValidarPermiso">
|
|
* <complexContent>
|
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|
* <sequence>
|
|
* <element name="ValidarPermisoPeticion" type="{http://bsg.gob.ec/AccesoBSGService}validarPermisoPeticion" minOccurs="0"/>
|
|
* </sequence>
|
|
* </restriction>
|
|
* </complexContent>
|
|
* </complexType>
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "ValidarPermiso", propOrder = {
|
|
"validarPermisoPeticion"
|
|
})
|
|
public class ValidarPermiso {
|
|
|
|
@XmlElement(name = "ValidarPermisoPeticion")
|
|
protected ValidarPermisoPeticion validarPermisoPeticion;
|
|
|
|
/**
|
|
* Obtiene el valor de la propiedad validarPermisoPeticion.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link ValidarPermisoPeticion }
|
|
*
|
|
*/
|
|
public ValidarPermisoPeticion getValidarPermisoPeticion() {
|
|
return validarPermisoPeticion;
|
|
}
|
|
|
|
/**
|
|
* Define el valor de la propiedad validarPermisoPeticion.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link ValidarPermisoPeticion }
|
|
*
|
|
*/
|
|
public void setValidarPermisoPeticion(ValidarPermisoPeticion value) {
|
|
this.validarPermisoPeticion = value;
|
|
}
|
|
|
|
}
|