Browse Source

Reapply "Move webauthn runtimehints to spring-security-webauthn"

This reverts commit 9489ab48ab.
pull/17617/head
Rob Winch 5 months ago
parent
commit
34742c9743
No known key found for this signature in database
  1. 4
      web/src/main/resources/META-INF/spring/aot.factories
  2. 2
      webauthn/src/main/java/org/springframework/security/web/webauthn/aot/PublicKeyCredentialUserEntityRuntimeHints.java
  3. 2
      webauthn/src/main/java/org/springframework/security/web/webauthn/aot/UserCredentialRuntimeHints.java
  4. 3
      webauthn/src/main/resources/META-INF/spring/aot.factories
  5. 2
      webauthn/src/test/java/org/springframework/security/web/webauthn/aot/PublicKeyCredentialUserEntityRuntimeHintsTests.java
  6. 2
      webauthn/src/test/java/org/springframework/security/web/webauthn/aot/UserCredentialRuntimeHintsTests.java

4
web/src/main/resources/META-INF/spring/aot.factories

@ -1,4 +1,2 @@ @@ -1,4 +1,2 @@
org.springframework.aot.hint.RuntimeHintsRegistrar=\
org.springframework.security.web.aot.hint.WebMvcSecurityRuntimeHints,\
org.springframework.security.web.aot.hint.UserCredentialRuntimeHints,\
org.springframework.security.web.aot.hint.PublicKeyCredentialUserEntityRuntimeHints
org.springframework.security.web.aot.hint.WebMvcSecurityRuntimeHints

2
web/src/main/java/org/springframework/security/web/aot/hint/PublicKeyCredentialUserEntityRuntimeHints.java → webauthn/src/main/java/org/springframework/security/web/webauthn/aot/PublicKeyCredentialUserEntityRuntimeHints.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.security.web.aot.hint;
package org.springframework.security.web.webauthn.aot;
import org.springframework.aot.hint.RuntimeHints;
import org.springframework.aot.hint.RuntimeHintsRegistrar;

2
web/src/main/java/org/springframework/security/web/aot/hint/UserCredentialRuntimeHints.java → webauthn/src/main/java/org/springframework/security/web/webauthn/aot/UserCredentialRuntimeHints.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.security.web.aot.hint;
package org.springframework.security.web.webauthn.aot;
import org.springframework.aot.hint.RuntimeHints;
import org.springframework.aot.hint.RuntimeHintsRegistrar;

3
webauthn/src/main/resources/META-INF/spring/aot.factories

@ -0,0 +1,3 @@ @@ -0,0 +1,3 @@
org.springframework.aot.hint.RuntimeHintsRegistrar=\
org.springframework.security.web.webauthn.aot.UserCredentialRuntimeHints,\
org.springframework.security.web.webauthn.aot.PublicKeyCredentialUserEntityRuntimeHints

2
web/src/test/java/org/springframework/security/web/aot/hint/PublicKeyCredentialUserEntityRuntimeHintsTests.java → webauthn/src/test/java/org/springframework/security/web/webauthn/aot/PublicKeyCredentialUserEntityRuntimeHintsTests.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.security.web.aot.hint;
package org.springframework.security.web.webauthn.aot;
import java.util.stream.Stream;

2
web/src/test/java/org/springframework/security/web/aot/hint/UserCredentialRuntimeHintsTests.java → webauthn/src/test/java/org/springframework/security/web/webauthn/aot/UserCredentialRuntimeHintsTests.java

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.security.web.aot.hint;
package org.springframework.security.web.webauthn.aot;
import java.util.stream.Stream;
Loading…
Cancel
Save