com.zdawn.jwt.web.UidDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwt-token Show documentation
Show all versions of jwt-token Show documentation
realize the jwt for java web application base on io.jsonwebtoken jjwt
package com.zdawn.jwt.web;
public interface UidDecoder {
default public String decodeUid(String value) {
return value;
}
}