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

com.healthy.common.websocket.message.JsonWebSocketMessage Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy