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

com.litongjava.tio.utils.token.ITokenStorage Maven / Gradle / Ivy

There is a newer version: 3.7.3.v202400213-RELEASE
Show newest version
package com.litongjava.tio.utils.token;

/**
 * ITokenCache.
 */
public interface ITokenStorage {

  void put(Object userId, String tokenValue);

  boolean containsKey(Object userId);

  String remove(Object userId);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy