com.healthy.common.websocket.message.JsonWebSocketMessage Maven / Gradle / Ivy
package com.healthy.common.websocket.message;
/**
* JsonWebSocketMessage
*
* @author xm.z
*/
@SuppressWarnings("AlibabaAbstractClassShouldStartWithAbstractNaming")
public abstract class JsonWebSocketMessage {
public static final String TYPE_FIELD = "type";
private final String type;
protected JsonWebSocketMessage(String type) {
this.type = type;
}
public String getType() {
return type;
}
}