- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getWebProtocols (1.52 sec)
-
src/main/java/org/codelibs/fess/validation/UriTypeValidator.java
} private String[] protocols; @Override public void initialize(final UriType uriType) { protocols = switch (uriType.protocolType()) { case WEB -> ComponentUtil.getProtocolHelper().getWebProtocols(); case FILE -> ComponentUtil.getProtocolHelper().getFileProtocols(); default -> throw new ConstraintDefinitionException("protocolType is empty or invalid: " + uriType.protocolType()); }; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 12:34:02 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
} /** * Returns the array of supported web protocols. * * @return array of web protocol strings with colon suffix (e.g., "http:", "https:") */ public String[] getWebProtocols() { return webProtocols; } /** * Returns the array of supported file protocols. * * @return array of file protocol strings with colon suffix (e.g., "file:", "ftp:")Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 12.4K bytes - Viewed (1)