- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setSuccessfulHttpCodes (0.1 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessorTest.java
* */ public class DefaultResponseProcessorTest extends PlainTestCase { public void test_isSuccessful() { DefaultResponseProcessor processor = new DefaultResponseProcessor(); processor.setSuccessfulHttpCodes(new int[] { 200 }); processor.setNotModifiedHttpCodes(new int[] { 304 }); ResponseData responseData = new ResponseData(); responseData.setHttpStatusCode(200);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
return successfulHttpCodes; } /** * Sets the successful HTTP codes. * * @param successfulHttpCodes the successful HTTP codes to set */ public void setSuccessfulHttpCodes(final int[] successfulHttpCodes) { this.successfulHttpCodes = successfulHttpCodes; } /** * Gets the not modified HTTP codes. * * @return the not modified HTTP codes
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
processor.setTransformer(container.getComponent("fileTransformer")); processor.setSuccessfulHttpCodes(new int[] { 200 }); processor.setNotModifiedHttpCodes(new int[] { 304 }); })// .<RegexRule> singleton("fileRule", RegexRule.class, rule -> {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 19.1K bytes - Viewed (0)