com.github.edgar615.util.spring.auth.AuthProperties Maven / Gradle / Ivy
package com.github.edgar615.util.spring.auth;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* Created by Edgar on 2017/11/16.
*
* @author Edgar Date 2017/11/16
*/
@ConfigurationProperties(prefix = "auth")
@Service
public class AuthProperties {
private List ignore;
public List getIgnore() {
return ignore;
}
public void setIgnore(List ignore) {
this.ignore = ignore;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy