cn.lang.security.properties.PreAuthorizeProperties Maven / Gradle / Ivy
package cn.lang.security.properties;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "lang.authorize")
public class PreAuthorizeProperties {
/**
* open PreAuthorize
*/
private Boolean enabled;
public Boolean getEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy