- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for FormScheme (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java
* <pre> * {@code * Map<String, String> params = new HashMap<>(); * params.put("token_url", "http://example.com/token"); * params.put("login_url", "http://example.com/login"); * FormScheme formScheme = new FormScheme(params); * formScheme.authenticate(credentials, executor); * } * </pre> * * <p>Parameters: * <ul> * <li>ENCODING - The character encoding to use for request parameters.</li>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (1) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/form/FormSchemeTest.java
public class FormSchemeTest extends PlainTestCase { public void test_getTokenValue() { FormScheme formScheme = new FormScheme(Collections.emptyMap()); String tokenPattern = "name=\"authenticity_token\" +value=\"([^\"]+)\""; String content = "<input name=\"authenticity_token\" value=\"abcdefg\">"; assertEquals("abcdefg", formScheme.getTokenValue(tokenPattern, content));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
import org.codelibs.fess.Constants; 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;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
import org.codelibs.fess.crawler.client.ftp.FtpClient; 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;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
final List<Pair<FormScheme, Credentials>> formSchemeList = new ArrayList<>(); for (final Authentication authentication : siteCredentialList) { final AuthScheme authScheme = authentication.getAuthScheme(); if (authScheme instanceof FormScheme) { formSchemeList.add(new Pair<>((FormScheme) authScheme, authentication.getCredentials())); } else {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0)