el.addHttpExt(new HttpExt(value, false));
} else if (hvalue instanceof HttpCookieList) {
// shouldn't be used, but who knows?
HttpCookieList cl = (HttpCookieList) hvalue;
HttpCookieList ncl = HttpFactory.parseCookieList(value);
HttpCookie scookies[] = ncl.getCookies();
for (int i = 0 ; i < scookies.length ; i++) {
HttpCookie cookie = scookies[i];
cl.addCookie(cookie.getName(), cookie.getValue());
}
} else if (hvalue instanceof HttpParamList) {
int idx = value.indexOf('=');
if (idx != -1) {
String pname = value.substring(0, idx);