File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
web/src/main/java/org/springframework/security/web/savedrequest Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
2+ * Copyright 2002-2022 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
3333import org .apache .commons .logging .Log ;
3434import org .apache .commons .logging .LogFactory ;
3535
36+ import org .springframework .security .core .SpringSecurityCoreVersion ;
3637import org .springframework .security .web .PortResolver ;
3738import org .springframework .security .web .util .UrlUtils ;
3839import org .springframework .util .Assert ;
6162 */
6263public class DefaultSavedRequest implements SavedRequest {
6364
65+ private static final long serialVersionUID = SpringSecurityCoreVersion .SERIAL_VERSION_UID ;
66+
6467 protected static final Log logger = LogFactory .getLog (DefaultSavedRequest .class );
6568
6669 private static final String HEADER_IF_NONE_MATCH = "If-None-Match" ;
Original file line number Diff line number Diff line change 11/*
2- * Copyright 2002-2016 the original author or authors.
2+ * Copyright 2002-2022 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
2020
2121import jakarta .servlet .http .Cookie ;
2222
23+ import org .springframework .security .core .SpringSecurityCoreVersion ;
24+
2325/**
2426 * Stores off the values of a cookie in a serializable holder
2527 *
2628 * @author Ray Krueger
2729 */
2830public class SavedCookie implements Serializable {
2931
32+ private static final long serialVersionUID = SpringSecurityCoreVersion .SERIAL_VERSION_UID ;
33+
3034 private final java .lang .String name ;
3135
3236 private final java .lang .String value ;
You can’t perform that action at this time.
0 commit comments