Skip to content

Commit

Permalink
add authorizeHttpRequests in HttpSecurityLambdaDsl
Browse files Browse the repository at this point in the history
fixes #438
  • Loading branch information
nmck257 authored Oct 5, 2023
1 parent 8453293 commit 5af999b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public final class HttpSecurityLambdaDsl extends Recipe {
private static final String FQN_HTTP_SECURITY = "org.springframework.security.config.annotation.web.builders.HttpSecurity";

private static final Collection<String> APPLICABLE_METHOD_NAMES = Arrays.asList(
"anonymous", "authorizeRequests", "cors", "csrf", "exceptionHandling", "formLogin",
"anonymous", "authorizeHttpRequests", "authorizeRequests", "cors", "csrf", "exceptionHandling", "formLogin",
"headers", "httpBasic", "jee", "logout", "oauth2Client", "oauth2Login", "oauth2ResourceServer",
"openidLogin", "portMapper", "rememberMe", "requestCache", "requestMatchers", "requiresChannel",
"saml2Login", "securityContext", "servletApi", "sessionManagement", "x509");
Expand Down

0 comments on commit 5af999b

Please sign in to comment.