Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for acceptHttpMethod (0.28 sec)

  1. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 55.4K bytes
    - Viewed (1)
Back to top