- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getOptionalRequest (0.06 sec)
-
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* * @return OptionalThing containing the query set */ protected OptionalThing<Set<String>> getQuerySet() { return LaRequestUtil.getOptionalRequest() .map(req -> ((Set<String>) req.getAttribute(Constants.HIGHLIGHT_QUERIES))) .filter(s -> s != null); } /** * Gets the content description from highlighted fields.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
* @param status The status code. * @param body The body. */ protected void writeJsonResponse(final int status, final String body) { final String callback = LaRequestUtil.getOptionalRequest().map(req -> req.getParameter("callback")).orElse(null); final boolean isJsonp = ComponentUtil.getFessConfig().isApiJsonpEnabled() && StringUtil.isNotBlank(callback);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 55.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
groupCache = CacheBuilder.newBuilder().expireAfterWrite(groupCacheExpiry, TimeUnit.SECONDS).build(); } @Override public LoginCredential getLoginCredential() { return LaRequestUtil.getOptionalRequest().map(request -> { if (logger.isDebugEnabled()) { logger.debug("Logging in with Entra ID Authenticator"); } final HttpSession session = request.getSession(false);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0)