com.github.sseserver.AccessUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sse-server Show documentation
Show all versions of sse-server Show documentation
Sse server for Spring Boot
package com.github.sseserver;
import java.io.Serializable;
/**
* 当前登录用户
*
* @author hao 2021年12月13日13:48:58
*/
public interface AccessUser {
default String getName() {
return null;
}
Serializable getId();
}