60 lines
1.2 KiB
Java
60 lines
1.2 KiB
Java
package soapConnection;
|
|
|
|
/**
|
|
* Created by JettenM on 05.07.2016.
|
|
*/
|
|
public class ApplicationUser {
|
|
private String fullName;
|
|
private String username;
|
|
private Long employeeOid;
|
|
private Long personOid;
|
|
private String tenant;
|
|
|
|
public String getTenant() {
|
|
return tenant;
|
|
}
|
|
|
|
public void setTenant(String pTenant) {
|
|
tenant = pTenant;
|
|
}
|
|
|
|
public String getFullName() {
|
|
return fullName;
|
|
}
|
|
|
|
public void setFullName(String fullName) {
|
|
this.fullName = fullName;
|
|
}
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
public Long getEmployeeOid() {
|
|
return employeeOid;
|
|
}
|
|
|
|
public void setEmployeeOid(Long employeeOid) {
|
|
this.employeeOid = employeeOid;
|
|
}
|
|
|
|
public Long getPersonOid() {
|
|
return personOid;
|
|
}
|
|
|
|
public void setPersonOid(Long personOid) {
|
|
this.personOid = personOid;
|
|
}
|
|
|
|
public ApplicationUser(String fullName, String username, Long employeeOid, Long personOid) {
|
|
this.fullName = fullName;
|
|
this.username = username;
|
|
this.employeeOid = employeeOid;
|
|
this.personOid = personOid;
|
|
}
|
|
}
|