- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getProtocolHelper (0.86 sec)
-
src/main/java/org/codelibs/fess/validation/UriTypeValidator.java
@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()); }; } @OverrideRegistered: 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/app/web/go/GoAction.java
* * @param url the URL to check * @return true if the URL is a file system path, false otherwise */ protected boolean isFileSystemPath(final String url) { return ComponentUtil.getProtocolHelper().isFileSystemPath(url); } /** * Validates if the URL is safe for redirection. * * @param url the URL to validateRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 9K bytes - Viewed (0)