Add Serial Version

Closes gh-16163
This commit is contained in:
Josh Cummings 2024-12-13 11:48:16 -07:00
parent fb954063bf
commit e3cd4339b2
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
3 changed files with 10 additions and 0 deletions

View File

@ -90,6 +90,8 @@ import org.springframework.security.oauth2.jwt.TestJwts;
import org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthentication;
import org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken;
import org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationToken;
import org.springframework.security.saml2.provider.service.authentication.DefaultSaml2AuthenticatedPrincipal;
import org.springframework.security.saml2.provider.service.authentication.TestSaml2Authentications;
import org.springframework.security.web.authentication.WebAuthenticationDetails;
import org.springframework.security.web.authentication.preauth.PreAuthenticatedAuthenticationToken;
@ -232,6 +234,10 @@ class SpringSecurityCoreVersionSerializableTests {
return token;
});
// saml2-service-provider
generatorByClassName.put(DefaultSaml2AuthenticatedPrincipal.class,
(r) -> TestSaml2Authentications.authentication().getPrincipal());
// web
generatorByClassName.put(PreAuthenticatedAuthenticationToken.class, (r) -> {
PreAuthenticatedAuthenticationToken token = new PreAuthenticatedAuthenticationToken(user, "creds",

View File

@ -16,6 +16,7 @@
package org.springframework.security.saml2.provider.service.authentication;
import java.io.Serial;
import java.io.Serializable;
import java.util.Collections;
import java.util.List;
@ -32,6 +33,9 @@ import org.springframework.util.Assert;
*/
public class DefaultSaml2AuthenticatedPrincipal implements Saml2AuthenticatedPrincipal, Serializable {
@Serial
private static final long serialVersionUID = -7601324133433139825L;
private final String name;
private final Map<String, List<Object>> attributes;