- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for isValidFileProtocol (0.2 sec)
-
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
* * @param url the URL to validate * @return true if the URL starts with a supported file protocol, false otherwise */ public boolean isValidFileProtocol(final String url) { return stream(fileProtocols).get(stream -> stream.anyMatch(s -> url.startsWith(s))); } /** * Adds a new web protocol to the supported protocols list.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (1)