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

cn.hippo4j.common.toolkit.UserContext Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.hippo4j.common.toolkit;

/**
 * User context (Transition scheme).
 *
 * @author chen.ma
 * @date 2021/11/17 21:13
 */
public class UserContext {

    private static String username;

    public static void setUserName(String username) {
        UserContext.username = username;
    }

    public static String getUserName() {
        return username;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy