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

io.github.dengchen2020.websocket.DefaultWebSocketClientInfo Maven / Gradle / Ivy

There is a newer version: 0.0.28
Show newest version
package io.github.dengchen2020.websocket;

/**
 * websocket客户端信息
 * @author dengchen
 * @since 2023/7/26
 */
public class DefaultWebSocketClientInfo {

    public DefaultWebSocketClientInfo() {
    }

    public DefaultWebSocketClientInfo(String clientId) {
        this.clientId = clientId;
    }

    /**
     * websocket会话id
     */
    private String clientId;

    public String getClientId() {
        return clientId;
    }

    public void setClientId(String clientId) {
        this.clientId = clientId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy