Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getApiJsonResponseHeaderList (0.22 sec)

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

                return new HighlightInfo();
            }
        }
    
        @Override
        protected void writeHeaders(final HttpServletResponse response) {
            ComponentUtil.getFessConfig().getApiJsonResponseHeaderList().forEach(e -> response.setHeader(e.getFirst(), e.getSecond()));
        }
    
        /**
         * Writes a JSON response.
         * @param status The status code.
         * @param t The throwable.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                propMap.put(API_GSA_RESPONSE_HEADER_LIST, list);
            }
            return list;
        }
    
        String getApiJsonResponseHeaders();
    
        default List<Pair<String, String>> getApiJsonResponseHeaderList() {
            @SuppressWarnings("unchecked")
            List<Pair<String, String>> list = (List<Pair<String, String>>) propMap.get(API_JSON_RESPONSE_HEADER_LIST);
            if (list == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
Back to top