- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for acceptHttpMethod (0.05 sec)
-
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
* Accepts the HTTP method. * @param request The HTTP request. * @param methods The accepted methods. * @return true if the method is accepted, false otherwise. */ protected boolean acceptHttpMethod(final HttpServletRequest request, final String... methods) { final String method = request.getMethod(); for (final String m : methods) { if (m.equals(method)) { return true;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0)