Class CookieManager.DynamicCookieSet
- java.lang.Object
-
- org.apache.manifoldcf.crawler.connectors.webcrawler.CookieManager.DynamicCookieSet
-
- All Implemented Interfaces:
LoginCookies
- Enclosing class:
- CookieManager
protected static class CookieManager.DynamicCookieSet extends java.lang.Object implements LoginCookies
This is a set of cookies, built dynamically.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<org.apache.http.cookie.Cookie>cookies-
Fields inherited from interface org.apache.manifoldcf.crawler.connectors.webcrawler.LoginCookies
_rcsid
-
-
Constructor Summary
Constructors Constructor Description DynamicCookieSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddCookie(org.apache.http.cookie.Cookie c)org.apache.http.cookie.CookiegetCookie(int index)Get the cookie nameintgetCookieCount()Get the cookie count
-
-
-
Method Detail
-
addCookie
public void addCookie(org.apache.http.cookie.Cookie c)
-
getCookieCount
public int getCookieCount()
Description copied from interface:LoginCookiesGet the cookie count- Specified by:
getCookieCountin interfaceLoginCookies
-
getCookie
public org.apache.http.cookie.Cookie getCookie(int index)
Description copied from interface:LoginCookiesGet the cookie name- Specified by:
getCookiein interfaceLoginCookies
-
-