Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            default:
                writeJsonResponse(HttpServletResponse.SC_NOT_FOUND, escapeJsonKeyValue(MESSAGE_FIELD, "Not found."));
                break;
            }
        }
    
        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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top