All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genesys.workspace.models.User Maven / Gradle / Ivy

There is a newer version: 9.0.73
Show newest version
package com.genesys.workspace.models;

public class User {
    private String employeeId;
    private String agentId;
    private String defaultPlace;
    private KeyValueCollection userProperties;

    public User() {}

    public String getEmployeeId() {
        return this.employeeId;
    }

    public String getAgentId() {
        return this.agentId;
    }

    public String getDefaultPlace() {
        return this.defaultPlace;
    }

    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