Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for UsernamePasswordCredentials (0.09 seconds)

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

                    Credentials hc5Creds = null;
                    if (hc4Creds instanceof org.apache.http.auth.UsernamePasswordCredentials) {
                        final org.apache.http.auth.UsernamePasswordCredentials up = (org.apache.http.auth.UsernamePasswordCredentials) hc4Creds;
                        hc5Creds = new UsernamePasswordCredentials(up.getUserName(),
                                up.getPassword() != null ? up.getPassword().toCharArray() : null);
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sat Jan 31 12:23:29 GMT 2026
    - 62.2K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

    import org.codelibs.fess.crawler.CrawlerContext;
    import org.codelibs.fess.crawler.client.AccessTimeoutTarget;
    import org.apache.http.auth.NTCredentials;
    import org.apache.http.auth.UsernamePasswordCredentials;
    import org.codelibs.fess.crawler.client.http.config.CredentialsConfig;
    import org.codelibs.fess.crawler.client.http.config.WebAuthenticationConfig;
    import org.codelibs.fess.crawler.client.http.conn.IdnDnsResolver;
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Fri Jan 09 23:46:52 GMT 2026
    - 54.4K bytes
    - Click Count (0)
Back to Top