Skip to content

Commit 25351a3

Browse files
Update Serial
Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
1 parent 7838079 commit 25351a3

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

web/src/main/java/org/springframework/security/web/webauthn/api/Bytes.java

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
package org.springframework.security.web.webauthn.api;
1818

19+
import java.io.Serial;
1920
import java.io.Serializable;
2021
import java.security.SecureRandom;
2122
import java.util.Arrays;
@@ -31,6 +32,7 @@
3132
*/
3233
public final class Bytes implements Serializable {
3334

35+
@Serial
3436
private static final long serialVersionUID = -3278138671365709777L;
3537

3638
private static final SecureRandom RANDOM = new SecureRandom();

web/src/main/java/org/springframework/security/web/webauthn/api/ImmutablePublicKeyCredentialUserEntity.java

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
package org.springframework.security.web.webauthn.api;
1818

19+
import java.io.Serial;
20+
1921
/**
2022
* <a href=
2123
* "https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialuserentity">PublicKeyCredentialUserEntity</a>
@@ -28,6 +30,7 @@
2830
*/
2931
public final class ImmutablePublicKeyCredentialUserEntity implements PublicKeyCredentialUserEntity {
3032

33+
@Serial
3134
private static final long serialVersionUID = -3438693960347279759L;
3235

3336
/**

0 commit comments

Comments
 (0)