| | |
| | | import com.qianwen.core.secure.props.SignSecure; |
| | | import com.qianwen.core.secure.provider.HttpMethod; |
| | | |
| | | /* loaded from: blade-core-secure-9.3.0.0-SNAPSHOT.jar:org/springblade/core/secure/registry/SecureRegistry.class */ |
| | | public class SecureRegistry { |
| | | private boolean enabled = false; |
| | | private boolean authEnabled = true; |
| | | private boolean basicEnabled = true; |
| | | private boolean signEnabled = true; |
| | | private boolean clientEnabled = true; |
| | | private final List<String> defaultExcludePatterns = new ArrayList(); |
| | | private final List<String> excludePatterns = new ArrayList(); |
| | | private final List<AuthSecure> authSecures = new ArrayList(); |
| | | private final List<BasicSecure> basicSecures = new ArrayList(); |
| | | private final List<SignSecure> signSecures = new ArrayList(); |
| | | private final List<String> defaultExcludePatterns = new ArrayList<>(); |
| | | private final List<String> excludePatterns = new ArrayList<>(); |
| | | private final List<AuthSecure> authSecures = new ArrayList<>(); |
| | | private final List<BasicSecure> basicSecures = new ArrayList<>(); |
| | | private final List<SignSecure> signSecures = new ArrayList<>(); |
| | | |
| | | public void setEnabled(final boolean enabled) { |
| | | this.enabled = enabled; |