51 lines
1.1 KiB
Java
51 lines
1.1 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;
|
||
|
|
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|