com.sugarcrm.ws.soap.UserAuth Maven / Gradle / Ivy
package com.sugarcrm.ws.soap;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for user_auth complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="user_auth">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="user_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "user_auth", propOrder = {
})
public class UserAuth {
@XmlElement(name = "user_name", required = true)
protected java.lang.String userName;
@XmlElement(required = true)
protected java.lang.String password;
/**
* Gets the value of the userName property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getUserName() {
return userName;
}
/**
* Sets the value of the userName property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setUserName(java.lang.String value) {
this.userName = value;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setPassword(java.lang.String value) {
this.password = value;
}
}