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 1
1
/*
2
- * Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
2
+ * Copyright 2002-2022 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
33
33
import org .apache .commons .logging .Log ;
34
34
import org .apache .commons .logging .LogFactory ;
35
35
36
+ import org .springframework .security .core .SpringSecurityCoreVersion ;
36
37
import org .springframework .security .web .PortResolver ;
37
38
import org .springframework .security .web .util .UrlUtils ;
38
39
import org .springframework .util .Assert ;
61
62
*/
62
63
public class DefaultSavedRequest implements SavedRequest {
63
64
65
+ private static final long serialVersionUID = SpringSecurityCoreVersion .SERIAL_VERSION_UID ;
66
+
64
67
protected static final Log logger = LogFactory .getLog (DefaultSavedRequest .class );
65
68
66
69
private static final String HEADER_IF_NONE_MATCH = "If-None-Match" ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2016 the original author or authors.
2
+ * Copyright 2002-2022 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
20
20
21
21
import javax .servlet .http .Cookie ;
22
22
23
+ import org .springframework .security .core .SpringSecurityCoreVersion ;
24
+
23
25
/**
24
26
* Stores off the values of a cookie in a serializable holder
25
27
*
26
28
* @author Ray Krueger
27
29
*/
28
30
public class SavedCookie implements Serializable {
29
31
32
+ private static final long serialVersionUID = SpringSecurityCoreVersion .SERIAL_VERSION_UID ;
33
+
30
34
private final java .lang .String name ;
31
35
32
36
private final java .lang .String value ;
You can’t perform that action at this time.
0 commit comments