Class HC4CookieHandler
- java.lang.Object
-
- org.apache.jmeter.protocol.http.control.HC4CookieHandler
-
- All Implemented Interfaces:
CookieHandler
public class HC4CookieHandler extends Object implements CookieHandler
-
-
Constructor Summary
Constructors Constructor Description HC4CookieHandler(String policy)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddCookieFromHeader(CookieManager cookieManager, boolean checkCookies, String cookieHeader, URL url)Add cookie to CookieManager from cookieHeader and URLStringgetCookieHeaderForURL(CollectionProperty cookiesCP, URL url, boolean allowVariableCookie)Find cookies applicable to the given URL and build the Cookie header from them.
-
-
-
Constructor Detail
-
HC4CookieHandler
public HC4CookieHandler(String policy)
-
-
Method Detail
-
addCookieFromHeader
public void addCookieFromHeader(CookieManager cookieManager, boolean checkCookies, String cookieHeader, URL url)
Description copied from interface:CookieHandlerAdd cookie to CookieManager from cookieHeader and URL- Specified by:
addCookieFromHeaderin interfaceCookieHandler- Parameters:
cookieManager- CookieManager on which cookies are addedcheckCookies- boolean to indicate if cookies must be validated against speccookieHeader- String cookie Headerurl- URL
-
getCookieHeaderForURL
public String getCookieHeaderForURL(CollectionProperty cookiesCP, URL url, boolean allowVariableCookie)
Description copied from interface:CookieHandlerFind cookies applicable to the given URL and build the Cookie header from them.- Specified by:
getCookieHeaderForURLin interfaceCookieHandler- Parameters:
cookiesCP-CollectionPropertyofCookieurl- URL of the request to which the returned header will be added.allowVariableCookie- flag whether to allow jmeter variables in cookie values- Returns:
- the value string for the cookie header (goes after "Cookie: ").
-
-