Skip to content

Commit 7abea4a

Browse files
Add RuntimeHints suffix for RuntimeHintsRegistrar
Closes gh-11497
1 parent 177baba commit 7abea4a

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

config/src/main/java/org/springframework/security/config/aot/hint/GlobalMethodSecurityHints.java renamed to config/src/main/java/org/springframework/security/config/aot/hint/GlobalMethodSecurityRuntimeHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* @author Marcus Da Coregio
2929
* @since 6.0
3030
*/
31-
class GlobalMethodSecurityHints implements RuntimeHintsRegistrar {
31+
class GlobalMethodSecurityRuntimeHints implements RuntimeHintsRegistrar {
3232

3333
@Override
3434
public void registerHints(RuntimeHints hints, ClassLoader classLoader) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
org.springframework.aot.hint.RuntimeHintsRegistrar=\
2-
org.springframework.security.config.aot.hint.GlobalMethodSecurityHints
2+
org.springframework.security.config.aot.hint.GlobalMethodSecurityRuntimeHints

config/src/test/java/org/springframework/security/config/aot/hint/GlobalMethodSecurityHintsTests.java renamed to config/src/test/java/org/springframework/security/config/aot/hint/GlobalMethodSecurityRuntimeHintsTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
import static org.assertj.core.api.Assertions.assertThat;
3232

3333
/**
34-
* Tests for {@link GlobalMethodSecurityHints}
34+
* Tests for {@link GlobalMethodSecurityRuntimeHints}
3535
*
3636
* @author Marcus Da Coregio
3737
*/
38-
class GlobalMethodSecurityHintsTests {
38+
class GlobalMethodSecurityRuntimeHintsTests {
3939

4040
private final RuntimeHints hints = new RuntimeHints();
4141

core/src/main/java/org/springframework/security/aot/hint/CoreSecurityHints.java renamed to core/src/main/java/org/springframework/security/aot/hint/CoreSecurityRuntimeHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
* @author Marcus Da Coregio
4949
* @since 6.0
5050
*/
51-
class CoreSecurityHints implements RuntimeHintsRegistrar {
51+
class CoreSecurityRuntimeHints implements RuntimeHintsRegistrar {
5252

5353
@Override
5454
public void registerHints(RuntimeHints hints, ClassLoader classLoader) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
org.springframework.aot.hint.RuntimeHintsRegistrar=\
2-
org.springframework.security.aot.hint.CoreSecurityHints
2+
org.springframework.security.aot.hint.CoreSecurityRuntimeHints

core/src/test/java/org/springframework/security/aot/hint/CoreSecurityHintsTests.java renamed to core/src/test/java/org/springframework/security/aot/hint/CoreSecurityRuntimeHintsTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@
5353
import static org.assertj.core.api.Assertions.assertThat;
5454

5555
/**
56-
* Tests for {@link CoreSecurityHints}
56+
* Tests for {@link CoreSecurityRuntimeHints}
5757
*
5858
* @author Marcus Da Coregio
5959
*/
60-
class CoreSecurityHintsTests {
60+
class CoreSecurityRuntimeHintsTests {
6161

6262
private final RuntimeHints hints = new RuntimeHints();
6363

ldap/src/main/java/org/springframework/security/ldap/aot/hint/LdapSecurityHints.java renamed to ldap/src/main/java/org/springframework/security/ldap/aot/hint/LdapSecurityRuntimeHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* @author Marcus Da Coregio
2828
* @since 6.0
2929
*/
30-
class LdapSecurityHints implements RuntimeHintsRegistrar {
30+
class LdapSecurityRuntimeHints implements RuntimeHintsRegistrar {
3131

3232
@Override
3333
public void registerHints(RuntimeHints hints, ClassLoader classLoader) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
org.springframework.aot.hint.RuntimeHintsRegistrar=\
2-
org.springframework.security.ldap.aot.hint.LdapSecurityHints
2+
org.springframework.security.ldap.aot.hint.LdapSecurityRuntimeHints

ldap/src/test/java/org/springframework/security/ldap/aot/hint/LdapSecurityHintsTests.java renamed to ldap/src/test/java/org/springframework/security/ldap/aot/hint/LdapSecurityRuntimeHintsTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
import static org.assertj.core.api.Assertions.assertThat;
3030

3131
/**
32-
* Tests for {@link LdapSecurityHints}
32+
* Tests for {@link LdapSecurityRuntimeHints}
3333
*
3434
* @author Marcus Da Coregio
3535
*/
36-
class LdapSecurityHintsTests {
36+
class LdapSecurityRuntimeHintsTests {
3737

3838
private final RuntimeHints hints = new RuntimeHints();
3939

web/src/main/java/org/springframework/security/web/aot/hint/WebMvcSecurityHints.java renamed to web/src/main/java/org/springframework/security/web/aot/hint/WebMvcSecurityRuntimeHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* @author Marcus Da Coregio
2828
* @since 6.0
2929
*/
30-
class WebMvcSecurityHints implements RuntimeHintsRegistrar {
30+
class WebMvcSecurityRuntimeHints implements RuntimeHintsRegistrar {
3131

3232
@Override
3333
public void registerHints(RuntimeHints hints, ClassLoader classLoader) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
org.springframework.aot.hint.RuntimeHintsRegistrar=\
2-
org.springframework.security.web.aot.hint.WebMvcSecurityHints
2+
org.springframework.security.web.aot.hint.WebMvcSecurityRuntimeHints

web/src/test/java/org/springframework/security/web/aot/hint/WebMvcSecurityHintsTests.java renamed to web/src/test/java/org/springframework/security/web/aot/hint/WebMvcSecurityRuntimeHintsTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
import static org.assertj.core.api.Assertions.assertThat;
3131

3232
/**
33-
* Tests for {@link WebMvcSecurityHints}
33+
* Tests for {@link WebMvcSecurityRuntimeHints}
3434
*
3535
* @author Marcus Da Coregio
3636
*/
37-
class WebMvcSecurityHintsTests {
37+
class WebMvcSecurityRuntimeHintsTests {
3838

3939
private final RuntimeHints hints = new RuntimeHints();
4040

0 commit comments

Comments
 (0)