com.ibm.wsspi.http
Uses of Class HttpCookie
Uses of HttpCookie in com.ibm.wsspi.http
Modifier and Type | Method and Description |
---|---|
HttpCookie.clone()
|
|
HttpResponse.getCookie(java.lang.String name)
Access the first instance of a cookie with the provided name.
|
|
HttpRequest.getCookie(java.lang.String name)
Access the first cookie instance in the message with the provided name.
|
Modifier and Type | Method and Description |
---|---|
|
HttpResponse.getCookies()
Access a list of all cookies found in this message.
|
|
HttpRequest.getCookies()
Access the list of all cookies found in this message.
|
|
HttpResponse.getCookies(java.lang.String name)
Access a list of all cookie instances matching the provided name.
|
|
HttpRequest.getCookies(java.lang.String name)
Access the list of all cookies matching the provided name.
|
Modifier and Type | Method and Description |
---|---|
|
HttpResponse.addCookie(HttpCookie cookie)
Add a cookie object to the message.
|
|
HttpResponse.removeCookie(HttpCookie cookie)
Remove a cookie object from the message.
|