org.springframework.security.web.savedrequest
Class SavedCookie

java.lang.Object
  extended by org.springframework.security.web.savedrequest.SavedCookie
All Implemented Interfaces:
Serializable

public class SavedCookie
extends Object
implements Serializable

Stores off the values of a cookie in a serializable holder

Author:
Ray Krueger
See Also:
Serialized Form

Constructor Summary
SavedCookie(Cookie cookie)
           
SavedCookie(String name, String value, String comment, String domain, int maxAge, String path, boolean secure, int version)
           
 
Method Summary
 String getComment()
           
 Cookie getCookie()
           
 String getDomain()
           
 int getMaxAge()
           
 String getName()
           
 String getPath()
           
 String getValue()
           
 int getVersion()
           
 boolean isSecure()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SavedCookie

public SavedCookie(String name,
                   String value,
                   String comment,
                   String domain,
                   int maxAge,
                   String path,
                   boolean secure,
                   int version)

SavedCookie

public SavedCookie(Cookie cookie)
Method Detail

getName

public String getName()

getValue

public String getValue()

getComment

public String getComment()

getDomain

public String getDomain()

getMaxAge

public int getMaxAge()

getPath

public String getPath()

isSecure

public boolean isSecure()

getVersion

public int getVersion()

getCookie

public Cookie getCookie()


Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.