This commit is contained in:
staccatomamba
2016-07-18 06:14:17 +02:00
parent b66d85c7dc
commit 88d70537a4
239 changed files with 206702 additions and 1358 deletions

View File

@@ -0,0 +1,50 @@
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;
}
}