- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getQueryString (0.06 sec)
-
src/main/java/org/codelibs/fess/api/WebApiRequest.java
* Returns the custom servlet path unless the query string contains SAStruts.method. * * @return The servlet path */ @Override public String getServletPath() { if (getQueryString() != null && getQueryString().indexOf("SAStruts.method") != -1) { return super.getServletPath(); } return servletPath; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLog.java
q = queryString; fq = filterQueryString; } /** * Returns the query string. * @return The query string. */ public String getQueryString() { return q; } /** * Returns the filter query string. * @return The filter query string. */ public String getFilterQueryString() { return fq; }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
*/ protected Map<String, String[]> getParameterMapFromQueryString(final HttpServletRequest request, final String enc) throws IOException { final String queryString = request.getQueryString(); if (StringUtil.isNotBlank(queryString)) { return parseQueryString(queryString, enc); } return Collections.emptyMap(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
highlightedQuerySet.add(text); } } /** * Gets the processed query string. * @return The query string. */ public String getQueryString() { return queryString; } /** * Checks if role-based query filtering is enabled. * @return True if role query is enabled, false otherwise. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0)