package trax.skp5; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Authorization. * *

Clase Java para Authorization complex type. * *

El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *

 * <complexType name="Authorization">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="user" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="pass" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Authorization", propOrder = { "user", "pass" }) public class Authorization { @XmlElement(required = true) protected String user; @XmlElement(required = true) protected String pass; /** * 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 pass. * * @return * possible object is * {@link String } * */ public String getPass() { return pass; } /** * Define el valor de la propiedad pass. * * @param value * allowed object is * {@link String } * */ public void setPass(String value) { this.pass = value; } }