Class SavedCookie
- java.lang.Object
-
- org.springframework.security.web.savedrequest.SavedCookie
-
- All Implemented Interfaces:
java.io.Serializable
public class SavedCookie extends java.lang.Object implements java.io.Serializable
Stores off the values of a cookie in a serializable holder- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SavedCookie(java.lang.String name, java.lang.String value, java.lang.String comment, java.lang.String domain, int maxAge, java.lang.String path, boolean secure, int version)
SavedCookie(javax.servlet.http.Cookie cookie)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getComment()
javax.servlet.http.Cookie
getCookie()
java.lang.String
getDomain()
int
getMaxAge()
java.lang.String
getName()
java.lang.String
getPath()
java.lang.String
getValue()
int
getVersion()
boolean
isSecure()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
-
getValue
public java.lang.String getValue()
-
getComment
public java.lang.String getComment()
-
getDomain
public java.lang.String getDomain()
-
getMaxAge
public int getMaxAge()
-
getPath
public java.lang.String getPath()
-
isSecure
public boolean isSecure()
-
getVersion
public int getVersion()
-
getCookie
public javax.servlet.http.Cookie getCookie()
-
-