diff --git a/config/src/test/java/org/springframework/security/config/aot/hint/GlobalMethodSecurityHintsTests.java b/config/src/test/java/org/springframework/security/config/aot/hint/GlobalMethodSecurityHintsTests.java index 06d792cce1..a0d8ff8aed 100644 --- a/config/src/test/java/org/springframework/security/config/aot/hint/GlobalMethodSecurityHintsTests.java +++ b/config/src/test/java/org/springframework/security/config/aot/hint/GlobalMethodSecurityHintsTests.java @@ -21,8 +21,8 @@ import org.junit.jupiter.api.Test; import org.springframework.aot.hint.MemberCategory; import org.springframework.aot.hint.RuntimeHints; -import org.springframework.aot.hint.RuntimeHintsPredicates; import org.springframework.aot.hint.RuntimeHintsRegistrar; +import org.springframework.aot.hint.predicate.RuntimeHintsPredicates; import org.springframework.core.annotation.SynthesizedAnnotation; import org.springframework.core.io.support.SpringFactoriesLoader; import org.springframework.security.config.annotation.authentication.configuration.EnableGlobalAuthentication; diff --git a/core/src/test/java/org/springframework/security/aot/hint/CoreSecurityHintsTests.java b/core/src/test/java/org/springframework/security/aot/hint/CoreSecurityHintsTests.java index 10844feb67..fe8e87eb06 100644 --- a/core/src/test/java/org/springframework/security/aot/hint/CoreSecurityHintsTests.java +++ b/core/src/test/java/org/springframework/security/aot/hint/CoreSecurityHintsTests.java @@ -25,8 +25,8 @@ import org.junit.jupiter.params.provider.MethodSource; import org.springframework.aot.hint.MemberCategory; import org.springframework.aot.hint.RuntimeHints; -import org.springframework.aot.hint.RuntimeHintsPredicates; import org.springframework.aot.hint.RuntimeHintsRegistrar; +import org.springframework.aot.hint.predicate.RuntimeHintsPredicates; import org.springframework.core.io.support.SpringFactoriesLoader; import org.springframework.security.access.expression.SecurityExpressionOperations; import org.springframework.security.access.expression.SecurityExpressionRoot; diff --git a/ldap/src/test/java/org/springframework/security/ldap/aot/hint/LdapSecurityHintsTests.java b/ldap/src/test/java/org/springframework/security/ldap/aot/hint/LdapSecurityHintsTests.java index db975f7e9e..f99ab81275 100644 --- a/ldap/src/test/java/org/springframework/security/ldap/aot/hint/LdapSecurityHintsTests.java +++ b/ldap/src/test/java/org/springframework/security/ldap/aot/hint/LdapSecurityHintsTests.java @@ -20,9 +20,9 @@ import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.aot.hint.RuntimeHints; -import org.springframework.aot.hint.RuntimeHintsPredicates; import org.springframework.aot.hint.RuntimeHintsRegistrar; import org.springframework.aot.hint.TypeReference; +import org.springframework.aot.hint.predicate.RuntimeHintsPredicates; import org.springframework.core.io.support.SpringFactoriesLoader; import org.springframework.util.ClassUtils; diff --git a/web/src/test/java/org/springframework/security/web/aot/hint/WebMvcSecurityHintsTests.java b/web/src/test/java/org/springframework/security/web/aot/hint/WebMvcSecurityHintsTests.java index 9543a32bf0..d3d54c509b 100644 --- a/web/src/test/java/org/springframework/security/web/aot/hint/WebMvcSecurityHintsTests.java +++ b/web/src/test/java/org/springframework/security/web/aot/hint/WebMvcSecurityHintsTests.java @@ -21,8 +21,8 @@ import org.junit.jupiter.api.Test; import org.springframework.aot.hint.MemberCategory; import org.springframework.aot.hint.RuntimeHints; -import org.springframework.aot.hint.RuntimeHintsPredicates; import org.springframework.aot.hint.RuntimeHintsRegistrar; +import org.springframework.aot.hint.predicate.RuntimeHintsPredicates; import org.springframework.core.io.support.SpringFactoriesLoader; import org.springframework.security.web.access.expression.WebSecurityExpressionRoot; import org.springframework.util.ClassUtils;