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

tech.mhuang.pacebox.jwt.admin.external.IJwtExternal Maven / Gradle / Ivy

package tech.mhuang.pacebox.jwt.admin.external;

import tech.mhuang.pacebox.jwt.admin.JwtHelper;

/**
 * jwt 扩展类
 *
 * @author mhuang
 * @since 1.0.0
 */
public interface IJwtExternal {

    /**
     * 默认创建的方法,可重构
     *
     * @param key jwt的key
     * @return 返回jwt生产接口
     */
    default IJwtProducer create(String key) {
        return new JwtHelper();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy