Uses of Class
org.htmlunit.util.Cookie
-
Packages that use Cookie Package Description org.htmlunit Framework classes (contains theWebClientclass which is the main entry point).org.htmlunit.util Miscellaneous utilities. -
-
Uses of Cookie in org.htmlunit
Methods in org.htmlunit that return Cookie Modifier and Type Method Description CookieCookieManager. getCookie(java.lang.String name)Returns the currently configured cookie with the specified name, ornullif one does not exist.Methods in org.htmlunit that return types with arguments of type Cookie Modifier and Type Method Description java.util.Set<Cookie>CookieManager. getCookies()Returns the currently configured cookies, in an unmodifiable set.java.util.Set<Cookie>WebClient. getCookies(java.net.URL url)Returns the currently configured cookies applicable to the specified URL, in an unmodifiable set.Methods in org.htmlunit with parameters of type Cookie Modifier and Type Method Description voidCookieManager. addCookie(Cookie cookie)Adds the specified cookie.voidCookieManager. removeCookie(Cookie cookie)Removes the specified cookie. -
Uses of Cookie in org.htmlunit.util
Methods in org.htmlunit.util that return types with arguments of type Cookie Modifier and Type Method Description static java.util.List<Cookie>Cookie. fromHttpClient(java.util.List<org.apache.http.cookie.Cookie> cookies)Converts the specified array of HttpClient cookies into a list of cookies.Method parameters in org.htmlunit.util with type arguments of type Cookie Modifier and Type Method Description static java.util.List<org.apache.http.cookie.Cookie>Cookie. toHttpClient(java.util.Collection<Cookie> cookies)Converts the specified collection of cookies into a collection of HttpClient cookies.
-