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

org.hswebframework.web.socket.CommandRequest Maven / Gradle / Ivy

The newest version!
package org.hswebframework.web.socket;

import org.hswebframework.web.authorization.Authentication;
import org.springframework.web.socket.WebSocketSession;

import java.util.Map;

/**
 * @author zhouhao
 */
public interface CommandRequest {
    Authentication getAuthentication();

    Map getParameters();

    WebSocketSession getSession();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy