Skip to content

Commit fe41189

Browse files
committed
Move webauthn runtimehints to spring-security-webauthn
Issue gh-17586
1 parent 79cd982 commit fe41189

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
org.springframework.aot.hint.RuntimeHintsRegistrar=\
2-
org.springframework.security.web.aot.hint.WebMvcSecurityRuntimeHints,\
3-
org.springframework.security.web.aot.hint.UserCredentialRuntimeHints,\
4-
org.springframework.security.web.aot.hint.PublicKeyCredentialUserEntityRuntimeHints
2+
org.springframework.security.web.aot.hint.WebMvcSecurityRuntimeHints

web/src/main/java/org/springframework/security/web/aot/hint/PublicKeyCredentialUserEntityRuntimeHints.java renamed to webauthn/src/main/java/org/springframework/security/web/webauthn/aot/PublicKeyCredentialUserEntityRuntimeHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.security.web.aot.hint;
17+
package org.springframework.security.web.webauthn.aot;
1818

1919
import org.springframework.aot.hint.RuntimeHints;
2020
import org.springframework.aot.hint.RuntimeHintsRegistrar;

web/src/main/java/org/springframework/security/web/aot/hint/UserCredentialRuntimeHints.java renamed to webauthn/src/main/java/org/springframework/security/web/webauthn/aot/UserCredentialRuntimeHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.security.web.aot.hint;
17+
package org.springframework.security.web.webauthn.aot;
1818

1919
import org.springframework.aot.hint.RuntimeHints;
2020
import org.springframework.aot.hint.RuntimeHintsRegistrar;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
org.springframework.aot.hint.RuntimeHintsRegistrar=\
2+
org.springframework.security.web.webauthn.aot.UserCredentialRuntimeHints,\
3+
org.springframework.security.web.webauthn.aot.PublicKeyCredentialUserEntityRuntimeHints
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.security.web.aot.hint;
17+
package org.springframework.security.web.webauthn.aot;
1818

1919
import java.util.stream.Stream;
2020

web/src/test/java/org/springframework/security/web/aot/hint/UserCredentialRuntimeHintsTests.java renamed to webauthn/src/test/java/org/springframework/security/web/webauthn/aot/UserCredentialRuntimeHintsTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package org.springframework.security.web.aot.hint;
17+
package org.springframework.security.web.webauthn.aot;
1818

1919
import java.util.stream.Stream;
2020

0 commit comments

Comments
 (0)