Uses of Class
javax.servlet.http.Cookie

Packages that use Cookie
javax.servlet.http   
org.apache.jserv   
 

Uses of Cookie in javax.servlet.http
 

Methods in javax.servlet.http that return Cookie
 Cookie[] HttpServletRequest.getCookies()
          Returns an array containing all of the Cookie objects the client sent with this request.
 

Methods in javax.servlet.http with parameters of type Cookie
 void NoBodyResponse.addCookie(Cookie cookie)
           
 void HttpServletResponse.addCookie(Cookie cookie)
          Adds the specified cookie to the response.
 

Uses of Cookie in org.apache.jserv
 

Methods in org.apache.jserv that return Cookie
static Cookie[] JServUtils.parseCookieHeader(String cookieHdr)
          Parse a cookie header into an array of cookies as per RFC2109 - HTTP Cookies
 

Methods in org.apache.jserv with parameters of type Cookie
static String JServUtils.encodeCookie(Cookie cookie)
          Encode a cookie as per the Netscape Cookies specification.