diff --git a/config/src/main/kotlin/org/springframework/security/config/annotation/web/AuthorizeHttpRequestsDsl.kt b/config/src/main/kotlin/org/springframework/security/config/annotation/web/AuthorizeHttpRequestsDsl.kt index bc0694a4ed..8bb9fedf10 100644 --- a/config/src/main/kotlin/org/springframework/security/config/annotation/web/AuthorizeHttpRequestsDsl.kt +++ b/config/src/main/kotlin/org/springframework/security/config/annotation/web/AuthorizeHttpRequestsDsl.kt @@ -26,7 +26,7 @@ import org.springframework.security.config.annotation.web.configurers.AuthorizeH import org.springframework.security.core.Authentication import org.springframework.security.web.access.intercept.AuthorizationFilter import org.springframework.security.web.access.intercept.RequestAuthorizationContext -import org.springframework.security.web.server.authorization.IpAddressAuthorizationManager +import org.springframework.security.web.access.IpAddressAuthorizationManager import org.springframework.security.web.servlet.util.matcher.MvcRequestMatcher import org.springframework.security.web.util.matcher.AnyRequestMatcher import org.springframework.security.web.util.matcher.RequestMatcher diff --git a/web/src/main/java/org/springframework/security/web/server/authorization/IpAddressAuthorizationManager.java b/web/src/main/java/org/springframework/security/web/access/IpAddressAuthorizationManager.java similarity index 97% rename from web/src/main/java/org/springframework/security/web/server/authorization/IpAddressAuthorizationManager.java rename to web/src/main/java/org/springframework/security/web/access/IpAddressAuthorizationManager.java index 0ca59c09e3..35e9cfdbd2 100644 --- a/web/src/main/java/org/springframework/security/web/server/authorization/IpAddressAuthorizationManager.java +++ b/web/src/main/java/org/springframework/security/web/access/IpAddressAuthorizationManager.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.springframework.security.web.server.authorization; +package org.springframework.security.web.access; import java.util.function.Supplier;