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

com.github.sseserver.AccessUser Maven / Gradle / Ivy

There is a newer version: 1.2.19
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy