- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getFormatType (0.05 seconds)
-
src/main/java/org/codelibs/fess/api/BaseApiManager.java
this.pathPrefix = pathPrefix; } /** * Gets the format type for the request. * @param request The HTTP servlet request. * @return The format type. */ protected FormatType getFormatType(final HttpServletRequest request) { FormatType formatType = (FormatType) request.getAttribute(API_FORMAT_TYPE); if (formatType != null) { return formatType; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} @Override public void process(final HttpServletRequest request, final HttpServletResponse response, final FilterChain chain) throws IOException, ServletException { switch (getFormatType(request)) { case SEARCH: processSearchRequest(request, response, chain); break; case LABEL: processLabelRequest(request, response, chain); break;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1)