package net.conselldemallorca.helium.wsintegraciones.portafirmasws.cws; 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 Application complex type. * * <p>El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * * <pre> * <complexType name="Application"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="user" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Application", propOrder = { "user", "password" }) public class Application { @XmlElement(required = true) protected String user; @XmlElement(required = true) protected String password; /** * Obtiene el valor de la propiedad user. * * @return * possible object is * {@link String } * */ public String getUser() { return user; } /** * Define el valor de la propiedad user. * * @param value * allowed object is * {@link String } * */ public void setUser(String value) { this.user = value; } /** * Obtiene el valor de la propiedad password. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Define el valor de la propiedad password. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = value; } }