
com.luues.security.config.BlackConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-security Show documentation
Show all versions of spring-boot-starter-security Show documentation
身份凭证的生成及验证封装(jwt、token、session共享三种方式)
package com.luues.security.config;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
/**
* @author wg
* @date 2021/6/15 19:15
*/
@Data
@AllArgsConstructor
public class BlackConfig implements Serializable {
private static final long serialVersionUID = -8706868063673768708L;
private Integer accessNumber;
private Long accessSeconds;
private Long unsealingSeconds;
private List whiteList;
public BlackConfig(){
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy