com.litongjava.tio.utils.token.ITokenStorage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-utils Show documentation
Show all versions of tio-utils Show documentation
t-io is a aio framework for java
package com.litongjava.tio.utils.token;
/**
* ITokenCache.
*/
public interface ITokenStorage {
void put(Object userId, String tokenValue);
boolean containsKey(Object userId);
String remove(Object userId);
}