parent
6f1232ce79
commit
6d1a886f92
|
@ -31,7 +31,7 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
|
|||
*/
|
||||
public final class CasAssertionAuthenticationToken extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final Assertion assertion;
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import org.springframework.util.ObjectUtils;
|
|||
*/
|
||||
public class CasAuthenticationToken extends AbstractAuthenticationToken implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final Object credentials;
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ public class CasServiceTicketAuthenticationToken extends AbstractAuthenticationT
|
|||
static final String CAS_STATEFUL_IDENTIFIER = "_cas_stateful_";
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String identifier;
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@ import static org.assertj.core.api.Assertions.fail;
|
|||
*/
|
||||
class SpringSecurityCoreVersionSerializableTests {
|
||||
|
||||
static final long securitySerialVersionUid = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
static final long securitySerialVersionUid = 620L;
|
||||
|
||||
static Path currentVersionFolder = Paths.get("src/test/resources/serialized/" + getCurrentVersion());
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
|
|||
@Deprecated
|
||||
public class RunAsUserToken extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final Class<? extends Authentication> originalAuthentication;
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
|
|||
*/
|
||||
public class RememberMeAuthenticationToken extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final Object principal;
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class UsernamePasswordAuthenticationToken extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final Object principal;
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
|
|||
*/
|
||||
public class JaasAuthenticationToken extends UsernamePasswordAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final transient LoginContext loginContext;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public final class JaasGrantedAuthority implements GrantedAuthority {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String role;
|
||||
|
||||
|
|
|
@ -41,7 +41,10 @@ public final class SpringSecurityCoreVersion {
|
|||
|
||||
/**
|
||||
* Global Serialization value for Spring Security classes.
|
||||
* @deprecated Please have each class use its own serialization version
|
||||
* @see SpringSecurityCoreVersionSerializableTests
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
public static final long SERIAL_VERSION_UID = 620L;
|
||||
|
||||
static final @Nullable String MIN_SPRING_VERSION = getSpringVersion();
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public final class SimpleGrantedAuthority implements GrantedAuthority {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String role;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.springframework.util.ObjectUtils;
|
|||
*/
|
||||
public class SecurityContextImpl implements SecurityContext {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private @Nullable Authentication authentication;
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ import org.springframework.util.Assert;
|
|||
public class ReactiveSessionInformation implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private Instant lastAccessTime;
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class SessionInformation implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private Date lastRequest;
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class User implements UserDetails, CredentialsContainer {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private static final Log logger = LogFactory.getLog(User.class);
|
||||
|
||||
|
@ -304,7 +304,7 @@ public class User implements UserDetails, CredentialsContainer {
|
|||
|
||||
private static class AuthorityComparator implements Comparator<GrantedAuthority>, Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
@Override
|
||||
public int compare(GrantedAuthority g1, GrantedAuthority g2) {
|
||||
|
|
|
@ -30,7 +30,7 @@ import org.springframework.security.core.userdetails.UserDetails;
|
|||
*/
|
||||
class MutableUser implements MutableUserDetails {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private @Nullable String password;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
|
|||
*/
|
||||
public class InetOrgPerson extends Person {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private String carLicense;
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class LdapUserDetailsImpl implements LdapUserDetails, PasswordPolicyData {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private String dn;
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class Person extends LdapUserDetailsImpl {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private String givenName;
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class OAuth2AuthorizedClient implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final ClientRegistration clientRegistration;
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public final class OAuth2AuthorizedClientId implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String clientRegistrationId;
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class OAuth2AuthenticationToken extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final OAuth2User principal;
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class OAuth2AuthorizationCodeAuthenticationToken extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private Map<String, Object> additionalParameters = new HashMap<>();
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class OAuth2LoginAuthenticationToken extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private OAuth2User principal;
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ import org.springframework.util.StringUtils;
|
|||
*/
|
||||
public final class ClientRegistration implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private String registrationId;
|
||||
|
||||
|
@ -219,7 +219,7 @@ public final class ClientRegistration implements Serializable {
|
|||
*/
|
||||
public class ProviderDetails implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private String authorizationUri;
|
||||
|
||||
|
@ -293,7 +293,7 @@ public final class ClientRegistration implements Serializable {
|
|||
*/
|
||||
public class UserInfoEndpoint implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private String uri;
|
||||
|
||||
|
@ -340,7 +340,7 @@ public final class ClientRegistration implements Serializable {
|
|||
*/
|
||||
public static final class Builder implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private static final Log logger = LogFactory.getLog(Builder.class);
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public abstract class AbstractOAuth2Token implements OAuth2Token, Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String tokenValue;
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public final class AuthenticationMethod implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
public static final AuthenticationMethod HEADER = new AuthenticationMethod("header");
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public final class AuthorizationGrantType implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
public static final AuthorizationGrantType AUTHORIZATION_CODE = new AuthorizationGrantType("authorization_code");
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public final class ClientAuthenticationMethod implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
/**
|
||||
* @since 5.5
|
||||
|
|
|
@ -103,7 +103,7 @@ public class OAuth2AccessToken extends AbstractOAuth2Token {
|
|||
*/
|
||||
public static final class TokenType implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
public static final TokenType BEARER = new TokenType("Bearer");
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class OAuth2Error implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String errorCode;
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ import org.springframework.util.Assert;
|
|||
public final class OAuth2AuthorizationExchange implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final OAuth2AuthorizationRequest authorizationRequest;
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ import org.springframework.web.util.UriUtils;
|
|||
*/
|
||||
public final class OAuth2AuthorizationRequest implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private String authorizationUri;
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.springframework.util.StringUtils;
|
|||
public final class OAuth2AuthorizationResponse implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private String redirectUri;
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public final class OAuth2AuthorizationResponseType implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
public static final OAuth2AuthorizationResponseType CODE = new OAuth2AuthorizationResponseType("code");
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class OidcUserInfo implements StandardClaimAccessor, Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final Map<String, Object> claims;
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class DefaultOAuth2User implements OAuth2User, Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final Set<GrantedAuthority> authorities;
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class OAuth2UserAuthority implements GrantedAuthority {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String authority;
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@ import org.springframework.util.Assert;
|
|||
public abstract class AbstractOAuth2TokenAuthenticationToken<T extends OAuth2Token>
|
||||
extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private Object principal;
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ import org.springframework.util.Assert;
|
|||
@Transient
|
||||
public class BearerTokenAuthentication extends AbstractOAuth2TokenAuthenticationToken<OAuth2AccessToken> {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final Map<String, Object> attributes;
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class BearerTokenAuthenticationToken extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String token;
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import org.springframework.security.oauth2.jwt.Jwt;
|
|||
@Transient
|
||||
public class JwtAuthenticationToken extends AbstractOAuth2TokenAuthenticationToken<Jwt> {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String name;
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public class Saml2Error implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String errorCode;
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public abstract class AbstractSaml2AuthenticationRequest implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String samlRequest;
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
|
|||
*/
|
||||
public class UnreachableFilterChainException extends IllegalArgumentException {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final SecurityFilterChain filterChain;
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
|
|||
*/
|
||||
public class WebAuthenticationDetails implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String remoteAddress;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
|
|||
*/
|
||||
public class PreAuthenticatedAuthenticationToken extends AbstractAuthenticationToken {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final Object principal;
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ import org.springframework.security.web.authentication.WebAuthenticationDetails;
|
|||
public class PreAuthenticatedGrantedAuthoritiesWebAuthenticationDetails extends WebAuthenticationDetails
|
||||
implements GrantedAuthoritiesContainer {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final List<GrantedAuthority> authorities;
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ import org.springframework.util.Assert;
|
|||
*/
|
||||
public final class SwitchUserGrantedAuthority implements GrantedAuthority {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String role;
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ import org.springframework.web.util.UriComponentsBuilder;
|
|||
*/
|
||||
public class DefaultSavedRequest implements SavedRequest {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
protected static final Log logger = LogFactory.getLog(DefaultSavedRequest.class);
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ import org.springframework.security.core.SpringSecurityCoreVersion;
|
|||
*/
|
||||
public class SavedCookie implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = SpringSecurityCoreVersion.SERIAL_VERSION_UID;
|
||||
private static final long serialVersionUID = 620L;
|
||||
|
||||
private final String name;
|
||||
|
||||
|
|
Loading…
Reference in New Issue