com.github.debugthug.xo.Authenticate Maven / Gradle / Ivy
package com.github.debugthug.xo;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
@XStreamAlias("Authenticate")
public class Authenticate {
@XStreamAlias("UserLogin")
@XStreamAsAttribute
private String userLogin;
@XStreamAlias("Password")
@XStreamAsAttribute
private String password;
@XStreamAlias("OfficeId")
@XStreamAsAttribute
private String officeId;
public String getUserLogin() {
return userLogin;
}
public void setUserLogin(String userLogin) {
this.userLogin = userLogin;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getOfficeId() {
return officeId;
}
public void setOfficeId(String officeId) {
this.officeId = officeId;
}
}