| | |
| | | /* loaded from: blade-core-secure-9.3.0.0-SNAPSHOT.jar:org/springblade/core/secure/props/BladeSecureProperties.class */ |
| | | public class BladeSecureProperties { |
| | | private Boolean enabled = false; |
| | | private final List<String> skipUrl = new ArrayList(); |
| | | private final List<String> skipUrl = new ArrayList<>(); |
| | | private Boolean authEnabled = true; |
| | | private final List<AuthSecure> auth = new ArrayList(); |
| | | private final List<AuthSecure> auth = new ArrayList<>(); |
| | | private Boolean basicEnabled = true; |
| | | private final List<BasicSecure> basic = new ArrayList(); |
| | | private final List<BasicSecure> basic = new ArrayList<>(); |
| | | private Boolean signEnabled = true; |
| | | private final List<SignSecure> sign = new ArrayList(); |
| | | private final List<SignSecure> sign = new ArrayList<>(); |
| | | private Boolean clientEnabled = true; |
| | | private final List<ClientSecure> client = new ArrayList(); |
| | | private final List<ClientSecure> client = new ArrayList<>(); |
| | | |
| | | public void setEnabled(final Boolean enabled) { |
| | | this.enabled = enabled; |