package com.titanic.ventapasajes.ws; 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>Java class for Seguridad complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Seguridad"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Ruc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Usuario" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Clave" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Partida" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Seguridad", propOrder = { "ruc", "usuario", "clave", "partida" }) public class Seguridad { @XmlElement(name = "Ruc") protected String ruc; @XmlElement(name = "Usuario") protected String usuario; @XmlElement(name = "Clave") protected String clave; @XmlElement(name = "Partida") protected String partida; /** * Gets the value of the ruc property. * * @return * possible object is * {@link String } * */ public String getRuc() { return ruc; } /** * Sets the value of the ruc property. * * @param value * allowed object is * {@link String } * */ public void setRuc(String value) { this.ruc = value; } /** * Gets the value of the usuario property. * * @return * possible object is * {@link String } * */ public String getUsuario() { return usuario; } /** * Sets the value of the usuario property. * * @param value * allowed object is * {@link String } * */ public void setUsuario(String value) { this.usuario = value; } /** * Gets the value of the clave property. * * @return * possible object is * {@link String } * */ public String getClave() { return clave; } /** * Sets the value of the clave property. * * @param value * allowed object is * {@link String } * */ public void setClave(String value) { this.clave = value; } /** * Gets the value of the partida property. * * @return * possible object is * {@link String } * */ public String getPartida() { return partida; } /** * Sets the value of the partida property. * * @param value * allowed object is * {@link String } * */ public void setPartida(String value) { this.partida = value; } }