Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HttpEntity (0.18 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java

                    final HttpPost httpPost = new HttpPost(tokenUrl);
                    if (StringUtil.isNotBlank(tokenReqParams)) {
                        final HttpEntity httpEntity = parseRequestParameters(tokenReqParams, null, encoding);
                        httpPost.setEntity(httpEntity);
                    }
                    httpRequest = httpPost;
                } else {
                    final StringBuilder buf = new StringBuilder(100);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                    }
    
                    HttpEntity httpEntity = null;
                    try {
                        final HttpResponse response = closeableHttpClient.execute(request, new BasicHttpContext(httpClientContext));
                        httpEntity = response.getEntity();
                        consumer.accept(response, httpEntity);
                    } catch (final Exception e) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java

    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import javax.annotation.PostConstruct;
    import javax.annotation.PreDestroy;
    
    import org.apache.http.Header;
    import org.apache.http.HttpEntity;
    import org.apache.http.HttpHost;
    import org.apache.http.auth.AuthScheme;
    import org.apache.http.auth.AuthSchemeProvider;
    import org.apache.http.auth.AuthScope;
    import org.apache.http.client.AuthCache;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    ----
    
    The _public_ constructor of `HttpClientWrapper` uses `HttpClient` as a parameter, so it is exposed to consumers and therefore belongs to the API. Note that `HttpGet` and `HttpEntity` are used in the signature of a _private_ method, and so they don't count towards making HttpClient an API dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top