66import java
77
88/** The class `org.springframework.security.config.annotation.web.builders.HttpSecurity`. */
9- class TypeHttpSecurity extends Class {
10- TypeHttpSecurity ( ) {
9+ class SpringHttpSecurity extends Class {
10+ SpringHttpSecurity ( ) {
1111 this .hasQualifiedName ( "org.springframework.security.config.annotation.web.builders" ,
1212 "HttpSecurity" )
1313 }
@@ -19,8 +19,8 @@ class TypeHttpSecurity extends Class {
1919 * or the class
2020 * `org.springframework.security.config.annotation.web.configurers.AuthorizeHttpRequestsConfigurer$AuthorizedUrl`.
2121 */
22- class TypeAuthorizedUrl extends Class {
23- TypeAuthorizedUrl ( ) {
22+ class SpringAuthorizedUrl extends Class {
23+ SpringAuthorizedUrl ( ) {
2424 this .hasQualifiedName ( "org.springframework.security.config.annotation.web.configurers" ,
2525 [
2626 "ExpressionUrlAuthorizationConfigurer<HttpSecurity>$AuthorizedUrl<>" ,
@@ -32,8 +32,8 @@ class TypeAuthorizedUrl extends Class {
3232/**
3333 * The class `org.springframework.security.config.annotation.web.AbstractRequestMatcherRegistry`.
3434 */
35- class TypeAbstractRequestMatcherRegistry extends Class {
36- TypeAbstractRequestMatcherRegistry ( ) {
35+ class SpringAbstractRequestMatcherRegistry extends Class {
36+ SpringAbstractRequestMatcherRegistry ( ) {
3737 this .hasQualifiedName ( "org.springframework.security.config.annotation.web" ,
3838 "AbstractRequestMatcherRegistry<AuthorizedUrl<>>" )
3939 }
@@ -45,10 +45,10 @@ class TypeAbstractRequestMatcherRegistry extends Class {
4545 * Note: this method is deprecated and scheduled for removal
4646 * in Spring Security 7.0.
4747 */
48- class AuthorizeRequestsCall extends MethodCall {
49- AuthorizeRequestsCall ( ) {
48+ class SpringAuthorizeRequestsCall extends MethodCall {
49+ SpringAuthorizeRequestsCall ( ) {
5050 this .getMethod ( ) .hasName ( "authorizeRequests" ) and
51- this .getMethod ( ) .getDeclaringType ( ) instanceof TypeHttpSecurity
51+ this .getMethod ( ) .getDeclaringType ( ) instanceof SpringHttpSecurity
5252 }
5353}
5454
@@ -58,10 +58,10 @@ class AuthorizeRequestsCall extends MethodCall {
5858 * Note: the no-argument version of this method is deprecated
5959 * and scheduled for removal in Spring Security 7.0.
6060 */
61- class AuthorizeHttpRequestsCall extends MethodCall {
62- AuthorizeHttpRequestsCall ( ) {
61+ class SpringAuthorizeHttpRequestsCall extends MethodCall {
62+ SpringAuthorizeHttpRequestsCall ( ) {
6363 this .getMethod ( ) .hasName ( "authorizeHttpRequests" ) and
64- this .getMethod ( ) .getDeclaringType ( ) instanceof TypeHttpSecurity
64+ this .getMethod ( ) .getDeclaringType ( ) instanceof SpringHttpSecurity
6565 }
6666}
6767
@@ -71,10 +71,10 @@ class AuthorizeHttpRequestsCall extends MethodCall {
7171 * Note: this method was removed in Spring Security 6.0.
7272 * It was replaced by `securityMatcher`.
7373 */
74- class RequestMatcherCall extends MethodCall {
75- RequestMatcherCall ( ) {
74+ class SpringRequestMatcherCall extends MethodCall {
75+ SpringRequestMatcherCall ( ) {
7676 this .getMethod ( ) .hasName ( "requestMatcher" ) and
77- this .getMethod ( ) .getDeclaringType ( ) instanceof TypeHttpSecurity
77+ this .getMethod ( ) .getDeclaringType ( ) instanceof SpringHttpSecurity
7878 }
7979}
8080
@@ -84,41 +84,41 @@ class RequestMatcherCall extends MethodCall {
8484 * Note: this method was removed in Spring Security 6.0.
8585 * It was replaced by `securityMatchers`.
8686 */
87- class RequestMatchersCall extends MethodCall {
88- RequestMatchersCall ( ) {
87+ class SpringRequestMatchersCall extends MethodCall {
88+ SpringRequestMatchersCall ( ) {
8989 this .getMethod ( ) .hasName ( "requestMatchers" ) and
90- this .getMethod ( ) .getDeclaringType ( ) instanceof TypeHttpSecurity
90+ this .getMethod ( ) .getDeclaringType ( ) instanceof SpringHttpSecurity
9191 }
9292}
9393
9494/** A call to the `HttpSecurity.securityMatcher` method. */
95- class SecurityMatcherCall extends MethodCall {
96- SecurityMatcherCall ( ) {
95+ class SpringSecurityMatcherCall extends MethodCall {
96+ SpringSecurityMatcherCall ( ) {
9797 this .getMethod ( ) .hasName ( "securityMatcher" ) and
98- this .getMethod ( ) .getDeclaringType ( ) instanceof TypeHttpSecurity
98+ this .getMethod ( ) .getDeclaringType ( ) instanceof SpringHttpSecurity
9999 }
100100}
101101
102102/** A call to the `HttpSecurity.securityMatchers` method. */
103- class SecurityMatchersCall extends MethodCall {
104- SecurityMatchersCall ( ) {
103+ class SpringSecurityMatchersCall extends MethodCall {
104+ SpringSecurityMatchersCall ( ) {
105105 this .getMethod ( ) .hasName ( "securityMatchers" ) and
106- this .getMethod ( ) .getDeclaringType ( ) instanceof TypeHttpSecurity
106+ this .getMethod ( ) .getDeclaringType ( ) instanceof SpringHttpSecurity
107107 }
108108}
109109
110110/** A call to the `AuthorizedUrl.permitAll` method. */
111- class PermitAllCall extends MethodCall {
112- PermitAllCall ( ) {
111+ class SpringPermitAllCall extends MethodCall {
112+ SpringPermitAllCall ( ) {
113113 this .getMethod ( ) .hasName ( "permitAll" ) and
114- this .getMethod ( ) .getDeclaringType ( ) instanceof TypeAuthorizedUrl
114+ this .getMethod ( ) .getDeclaringType ( ) instanceof SpringAuthorizedUrl
115115 }
116116}
117117
118118/** A call to the `AbstractRequestMatcherRegistry.anyRequest` method. */
119- class AnyRequestCall extends MethodCall {
120- AnyRequestCall ( ) {
119+ class SpringAnyRequestCall extends MethodCall {
120+ SpringAnyRequestCall ( ) {
121121 this .getMethod ( ) .hasName ( "anyRequest" ) and
122- this .getMethod ( ) .getDeclaringType ( ) instanceof TypeAbstractRequestMatcherRegistry
122+ this .getMethod ( ) .getDeclaringType ( ) instanceof SpringAbstractRequestMatcherRegistry
123123 }
124124}
0 commit comments