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

com.wordnik.swagger.auth.service.TokenScope Maven / Gradle / Ivy

The newest version!
package com.wordnik.swagger.auth.service;

public class TokenScope {
  public static final ThreadLocal userThreadLocal = new ThreadLocal();

  public static void setUsername(String username) {
    userThreadLocal.set(username);
  }

  public static String getUsername() {
    return (String)userThreadLocal.get();
  }

  public static void unsetUsername() {
    userThreadLocal.remove();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy