Uses of Class
com.ibm.wsspi.http.HttpCookie
-
Packages that use HttpCookie Package Description com.ibm.wsspi.http -
-
Uses of HttpCookie in com.ibm.wsspi.http
Methods in com.ibm.wsspi.http that return HttpCookie Modifier and Type Method Description HttpCookie
HttpCookie. clone()
HttpCookie
HttpRequest. getCookie(java.lang.String name)
Access the first cookie instance in the message with the provided name.HttpCookie
HttpResponse. getCookie(java.lang.String name)
Access the first instance of a cookie with the provided name.Methods in com.ibm.wsspi.http that return types with arguments of type HttpCookie Modifier and Type Method Description java.util.List<HttpCookie>
HttpRequest. getCookies()
Access the list of all cookies found in this message.java.util.List<HttpCookie>
HttpRequest. getCookies(java.lang.String name)
Access the list of all cookies matching the provided name.java.util.List<HttpCookie>
HttpResponse. getCookies()
Access a list of all cookies found in this message.java.util.List<HttpCookie>
HttpResponse. getCookies(java.lang.String name)
Access a list of all cookie instances matching the provided name.Methods in com.ibm.wsspi.http with parameters of type HttpCookie Modifier and Type Method Description void
HttpResponse. addCookie(HttpCookie cookie)
Add a cookie object to the message.void
HttpResponse. removeCookie(HttpCookie cookie)
Remove a cookie object from the message.
-