We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8cac0d commit 31634e2Copy full SHA for 31634e2
core/src/main/java/org/springframework/security/core/SimpleAuthentication.java
@@ -16,6 +16,7 @@
16
17
package org.springframework.security.core;
18
19
+import java.io.Serial;
20
import java.util.Collection;
21
import java.util.LinkedHashSet;
22
import java.util.function.Consumer;
@@ -24,6 +25,9 @@
24
25
26
final class SimpleAuthentication implements Authentication {
27
28
+ @Serial
29
+ private static final long serialVersionUID = 3194696462184782814L;
30
+
31
private final @Nullable Object principal;
32
33
private final @Nullable Object credentials;
0 commit comments