- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getResourceAsFileNoException (0.1 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
} else if (fessConfig.isSupportedUploadedFile(fileName) || fessConfig.isSupportedUploadedFile(uploadedFileName)) { uploadFile = ResourceUtil.getResourceAsFileNoException(fileName); if (uploadFile == null) { throwValidationError(messages -> messages.addErrorsDesignFileNameIsNotFound("designFileName"), this::asListHtml); return null;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 23 23:57:26 GMT 2026 - 20.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* @return The absolute file path of the resource, or null if not found */ protected String getResourcePath(final String path) { final File file = ResourceUtil.getResourceAsFileNoException(path); if (file != null) { return file.getAbsolutePath(); } return null; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3)