156157158159160161162163164165
} private Cookie createHttpCookie( String name, String value, String domain, String path ) { Cookie cookie = new Cookie( domain, name, value ); cookie.setPath( path ); cookie.setPathAttributeSpecified( true ); return cookie; }