1
0
mirror of synced 2026-07-05 02:40:02 +00:00

Add RuntimeHints suffix for RuntimeHintsRegistrar

Closes gh-11497
This commit is contained in:
Marcus Da Coregio
2022-07-13 10:14:43 -03:00
parent 177baba8c9
commit 7abea4a964
12 changed files with 16 additions and 16 deletions
@@ -27,7 +27,7 @@ import org.springframework.aot.hint.TypeReference;
* @author Marcus Da Coregio
* @since 6.0
*/
class LdapSecurityHints implements RuntimeHintsRegistrar {
class LdapSecurityRuntimeHints implements RuntimeHintsRegistrar {
@Override
public void registerHints(RuntimeHints hints, ClassLoader classLoader) {
@@ -1,2 +1,2 @@
org.springframework.aot.hint.RuntimeHintsRegistrar=\
org.springframework.security.ldap.aot.hint.LdapSecurityHints
org.springframework.security.ldap.aot.hint.LdapSecurityRuntimeHints
@@ -29,11 +29,11 @@ import org.springframework.util.ClassUtils;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link LdapSecurityHints}
* Tests for {@link LdapSecurityRuntimeHints}
*
* @author Marcus Da Coregio
*/
class LdapSecurityHintsTests {
class LdapSecurityRuntimeHintsTests {
private final RuntimeHints hints = new RuntimeHints();