Uses of Class
ch.supertomcat.supertomcatutils.http.cookies.BrowserCookie
-
-
Uses of BrowserCookie in ch.supertomcat.supertomcatutils.http.cookies
Methods in ch.supertomcat.supertomcatutils.http.cookies that return types with arguments of type BrowserCookie Modifier and Type Method Description static List<BrowserCookie>BrowserCookies. getBrowserCookies(String url, int browser)Returns the Cookies for an URL from the given Browserstatic List<BrowserCookie>BrowserCookies. getBrowserCookies(String url, int browser, Map<String,String> cookieStrategyOptions)Returns the Cookies for an URL from the given Browserstatic List<BrowserCookie>BrowserCookies. getBrowserCookies(String url, CookieStrategy cookieStrategy)Returns the Cookies for an URLstatic List<BrowserCookie>BrowserCookies. getBrowserCookies(String url, CookieStrategy cookieStrategy, Map<String,String> cookieStrategyOptions)Returns the Cookies for an URLList<BrowserCookie>CookieStrategy. getCookies(String url, String domain, String[] hosts, String[] paths, Map<String,String> options)Returns the cookies for the given URLList<BrowserCookie>NoCookieStrategy. getCookies(String url, String domain, String[] hosts, String[] paths, Map<String,String> options)Method parameters in ch.supertomcat.supertomcatutils.http.cookies with type arguments of type BrowserCookie Modifier and Type Method Description static StringBrowserCookies. convertToString(List<BrowserCookie> cookies)Convert cookies to String -
Uses of BrowserCookie in ch.supertomcat.supertomcatutils.http.cookies.firefox
Methods in ch.supertomcat.supertomcatutils.http.cookies.firefox that return types with arguments of type BrowserCookie Modifier and Type Method Description List<BrowserCookie>FirefoxCookieStrategy. getCookies(String url, String domain, String[] hosts, String[] paths, Map<String,String> options)static List<BrowserCookie>FirefoxCookies. getCookiesFromFirefox(String domain, String[] hosts, String[] paths, String cookieFile, String cookieFilev3)Returns cookies from Firefox Because of problems, when two thread are trying to read cookies from firefox 3 at the same time, i had to synchronize this method.static List<BrowserCookie>FirefoxCookies. getCookiesFromFirefox2TextFile(String cookieFile, String domain, String[] hosts, String[] paths, String browserName)Reads out the cookies from firefox v2 text filestatic List<BrowserCookie>FirefoxCookies. getCookiesFromFirefox3Sqlite(String cookieFilev3, String domain, String[] hosts, String[] paths, Object dbLockObject, String browserName)Reads out the cookies from firefox v3 sqlite file -
Uses of BrowserCookie in ch.supertomcat.supertomcatutils.http.cookies.ie
Methods in ch.supertomcat.supertomcatutils.http.cookies.ie that return types with arguments of type BrowserCookie Modifier and Type Method Description List<BrowserCookie>IECookieStrategy. getCookies(String url, String domain, String[] hosts, String[] paths, Map<String,String> options)static List<BrowserCookie>IECookies. getCookiesFromIE(String domain, String[] hosts)Returns cookies from IE -
Uses of BrowserCookie in ch.supertomcat.supertomcatutils.http.cookies.opera.newformat
Methods in ch.supertomcat.supertomcatutils.http.cookies.opera.newformat that return types with arguments of type BrowserCookie Modifier and Type Method Description List<BrowserCookie>OperaNewCookieStrategy. getCookies(String url, String domain, String[] hosts, String[] paths, Map<String,String> options)static List<BrowserCookie>OperaNewCookies. getCookiesFromOpera(String domain, String[] hosts, String[] paths, String cookieFile)Returns cookies from Opera Because of problems, when two thread are trying to read cookies from Opera at the same time, i had to synchronize this method. -
Uses of BrowserCookie in ch.supertomcat.supertomcatutils.http.cookies.opera.oldformat
Methods in ch.supertomcat.supertomcatutils.http.cookies.opera.oldformat that return types with arguments of type BrowserCookie Modifier and Type Method Description List<BrowserCookie>OperaCookieStrategy. getCookies(String url, String domain, String[] hosts, String[] paths, Map<String,String> options)static List<BrowserCookie>OperaCookies. getCookiesFromOpera(String domain, String[] hosts, String[] paths, String cookieFile)Returns cookies from Opera -
Uses of BrowserCookie in ch.supertomcat.supertomcatutils.http.cookies.palemoon
Methods in ch.supertomcat.supertomcatutils.http.cookies.palemoon that return types with arguments of type BrowserCookie Modifier and Type Method Description List<BrowserCookie>PaleMoonCookieStrategy. getCookies(String url, String domain, String[] hosts, String[] paths, Map<String,String> options)static List<BrowserCookie>PaleMoonCookies. getCookiesFromPaleMoon(String domain, String[] hosts, String[] paths, String cookieFile)Returns cookies from Pale Moon Because of problems, when two thread are trying to read cookies from Pale Moon at the same time, i had to synchronize this method. -
Uses of BrowserCookie in ch.supertomcat.supertomcatutils.http.cookies.webkit
Methods in ch.supertomcat.supertomcatutils.http.cookies.webkit that return types with arguments of type BrowserCookie Modifier and Type Method Description static List<BrowserCookie>WebkitCookies. getCookiesFromWebkit(String domain, String[] hosts, String[] paths, String cookieFile)Returns cookies from Webkit based browsers Because of problems, when two thread are trying to read cookies from Webkit based browsers at the same time, i had to synchronize this method.static List<BrowserCookie>WebkitCookies. getCookiesFromWebkitSqlite(String cookieFile, String domain, String[] hosts, String[] paths, Object dbLockObject)Reads out the cookies from Webkit based browser's sqlite file
-