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

cz.mmsparams.api.websocket.model.clientlib.ClientInfo Maven / Gradle / Ivy

package cz.mmsparams.api.websocket.model.clientlib;

import java.io.Serializable;

import cz.mmsparams.api.websocket.WebSocketModelBase;

public class ClientInfo extends WebSocketModelBase implements Serializable
{
    private String clientKey;
    private String computerName;
    private String currentUserName;

    public String getClientKey()
    {
        return clientKey;
    }

    public void setClientKey(String clientKey)
    {
        this.clientKey = clientKey;
    }

    public void setComputerName(String computerName)
    {
        this.computerName = computerName;
    }

    public String getComputerName()
    {
        return computerName;
    }

    public void setCurrentUserName(String currentUserName)
    {
        this.currentUserName = currentUserName;
    }

    public String getCurrentUserName()
    {
        return currentUserName;
    }

    @Override
    public String toString()
    {
        return "ClientInfo{" +
                "clientKey='" + clientKey + '\'' +
                ", computerName='" + computerName + '\'' +
                ", currentUserName='" + currentUserName + '\'' +
                "} " + super.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy