Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getResponseHeaders (0.21 seconds)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProviderTest.java

        }
    
        private FessConfig createFessConfigWithResponseHeaders(final String text) {
            return new FessConfig.SimpleImpl() {
                @Override
                public String getResponseHeaders() {
                    return text;
                }
            };
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProvider.java

        protected List<Pair<String, String>> defaultResponseHeaders;
    
        public FessActionAdjustmentProvider(final FessConfig fessConfig) {
            parseResponseHeaderConfig(fessConfig.getResponseHeaders());
        }
    
        private void parseResponseHeaderConfig(final String value) {
            if (StringUtil.isBlank(value)) {
                defaultResponseHeaders = Collections.emptyList();
                return;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         *  <br>
         * comment: HTTP headers for the response.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getResponseHeaders();
    
        /**
         * Get the value for the key 'index.document.search.index'. <br>
         * The value is, e.g. fess.search <br>
         * comment: Index name for search documents.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top