Uses of Class
com.gargoylesoftware.htmlunit.util.Cookie
-
Packages that use Cookie Package Description com.gargoylesoftware.htmlunit Framework classes (contains theWebClientclass which is the main entry point).com.gargoylesoftware.htmlunit.util Miscellaneous utilities. -
-
Uses of Cookie in com.gargoylesoftware.htmlunit
Methods in com.gargoylesoftware.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 com.gargoylesoftware.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 com.gargoylesoftware.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 com.gargoylesoftware.htmlunit.util
Methods in com.gargoylesoftware.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 com.gargoylesoftware.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.
-