javax.servlet.http.HttpServletResponse
, javax.servlet.ServletResponse
public interface WLHttpCookies
Modifier and Type | Method | Description |
---|---|---|
javax.servlet.http.Cookie |
getCookie(java.lang.String name) |
Returns an HTTP Cookie associated with this HttpServletResponse.
|
java.util.List<javax.servlet.http.Cookie> |
getCookies() |
Returns a list of HTTP Cookies associated with this HttpServletResponse.
|
void |
removeCookie(java.lang.String name,
java.lang.String path) |
Removes an HTTP Cookie associated with this HttpServletResponse.
|
javax.servlet.http.Cookie getCookie(java.lang.String name)
Returns an HTTP Cookie associated with this HttpServletResponse.
NOTE:If the response has been committed, the Cookie cannot be updated.
name
- The name of the cookie to obtainnull
when the Cookie does not existjava.util.List<javax.servlet.http.Cookie> getCookies()
Returns a list of HTTP Cookies associated with this HttpServletResponse.
NOTE:If the response has been committed, the Cookies cannot be updated.
List
of the Cookies associated with this HttpServletResponsevoid removeCookie(java.lang.String name, java.lang.String path)
Removes an HTTP Cookie associated with this HttpServletResponse.
NOTE:If the response has been committed, the Cookie will still be contained in the HTTP response.
name
- The name of the cookie to removepath
- The path of the cookie to remove