Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AuthenticationImpl (0.21 sec)

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

    /**
     * @author shinsuke
     *
     */
    public class AuthenticationImpl implements Authentication {
        private AuthScope authScope;
    
        private Credentials credentials;
    
        private AuthScheme authScheme;
    
        public AuthenticationImpl(final AuthScope authScope, final Credentials credentials) {
            this(authScope, credentials, null);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

    import org.codelibs.fess.app.service.WebConfigService;
    import org.codelibs.fess.crawler.client.http.Authentication;
    import org.codelibs.fess.crawler.client.http.form.FormScheme;
    import org.codelibs.fess.crawler.client.http.impl.AuthenticationImpl;
    import org.codelibs.fess.crawler.client.http.ntlm.JcifsEngine;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.codelibs.fess.es.config.bsentity.BsWebAuthentication;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

                getMaxErrorRetryCount() >> Optional.absent()
                getPartSize() >> 512
                getMultipartThreshold() >> 1024
            }
    
            S3Client s3Client = new S3Client(authenticationImpl, s3SystemProperties)
    
            when:
            def stream = new FileInputStream(file)
            def uri = new URI("s3://${bucketName}/maven/release/$FILE_NAME")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java

        // httpClient.setInitParameterMap(paramMap);
        //
        // DigestScheme digestScheme = new DigestScheme();
        // List<Authentication> basicAuthList = new ArrayList<Authentication>();
        // basicAuthList.add(new AuthenticationImpl(
        // new AuthScope("www.hoge.com", 80),
        // new UsernamePasswordCredentials("username", "password"),
        // digestScheme));
        // paramMap.put(
        // HcHttpClient.AUTHENTICATIONS_PROPERTY,
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

    import org.codelibs.fess.crawler.client.http.Authentication;
    import org.codelibs.fess.crawler.client.http.HcHttpClient;
    import org.codelibs.fess.crawler.client.http.form.FormScheme;
    import org.codelibs.fess.crawler.client.http.impl.AuthenticationImpl;
    import org.codelibs.fess.crawler.client.http.ntlm.JcifsEngine;
    import org.codelibs.fess.crawler.client.smb.SmbAuthentication;
    import org.codelibs.fess.crawler.client.smb.SmbClient;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top