Class CookieSet
- java.lang.Object
-
- org.apache.manifoldcf.crawler.connectors.webcrawler.CookieSet
-
- All Implemented Interfaces:
LoginCookies
public class CookieSet extends java.lang.Object implements LoginCookies
This class represents a bunch of cookies
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<org.apache.http.cookie.Cookie>
cookieList
-
Fields inherited from interface org.apache.manifoldcf.crawler.connectors.webcrawler.LoginCookies
_rcsid
-
-
Constructor Summary
Constructors Constructor Description CookieSet(java.util.List<org.apache.http.cookie.Cookie> cookieList)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.http.cookie.Cookie
getCookie(int index)
Get the cookie nameint
getCookieCount()
Get the cookie count
-
-
-
Method Detail
-
getCookieCount
public int getCookieCount()
Description copied from interface:LoginCookies
Get the cookie count- Specified by:
getCookieCount
in interfaceLoginCookies
-
getCookie
public org.apache.http.cookie.Cookie getCookie(int index)
Description copied from interface:LoginCookies
Get the cookie name- Specified by:
getCookie
in interfaceLoginCookies
-
-