- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setWebProtocols (0.07 sec)
-
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
GsaConfigParser parser = new GsaConfigParser(); String[] customWebProtocols = { "http:", "https:", "ftp:" }; String[] customFileProtocols = { "file:", "smb:" }; parser.setWebProtocols(customWebProtocols); parser.setFileProtocols(customFileProtocols); assertEquals("\\Qftp://test\\E.*", parser.parseFilterPaths("ftp://test", true, false));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
} /** * Sets the array of web protocols to recognize for URL classification. * * @param webProtocols array of protocol prefixes (e.g., "http:", "https:") */ public void setWebProtocols(final String[] webProtocols) { this.webProtocols = webProtocols; } /** * Sets the array of file protocols to recognize for URL classification. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0)