com.genesys.workspace.models.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of workspace Show documentation
Show all versions of workspace Show documentation
A Java library to interface to Genesys Workspace public API
package com.genesys.workspace.models;
public class User {
private int dbid;
private String employeeId;
private String agentId;
private String defaultPlace;
private KeyValueCollection userProperties;
public User() {}
public int getDBID() {
return this.dbid;
}
public String getEmployeeId() {
return this.employeeId;
}
public String getAgentId() {
return this.agentId;
}
public String getDefaultPlace() {
return this.defaultPlace;
}
public void setDBID(int dbid) {
this.dbid = dbid;
}
public void setEmployeeId(String employeeId) {
this.employeeId = employeeId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
}
public void setDefaultPlace(String defaultPlace) {
this.defaultPlace = defaultPlace;
}
public KeyValueCollection getUserProperties() {
return userProperties;
}
public void setUserProperties(KeyValueCollection userProperties) {
this.userProperties = userProperties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy