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

org.redkale.net.http.WebSocketAction Maven / Gradle / Ivy

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package org.redkale.net.http;

import java.io.Serializable;
import java.util.Map;
import org.redkale.convert.json.JsonConvert;

/**
 * WebSocket.broadcastAction时的参数
 *
 * 

* 详情见: https://redkale.org * * @author zhangjx */ public class WebSocketAction implements Serializable { protected String action; protected Map attach; public WebSocketAction() { } public WebSocketAction(String action) { this.action = action; } public WebSocketAction(String action, Map attach) { this.action = action; this.attach = attach; } public String getAction() { return action; } public void setAction(String action) { this.action = action; } public Map getAttach() { return attach; } public void setAttach(Map attach) { this.attach = attach; } @Override public String toString() { return JsonConvert.root().convertTo(this); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy