Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getResponseFieldContentTitle (1.53 sec)

  1. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    return baseConfig.getResponseFieldContentDescription();
                }
    
                @Override
                public String getResponseFieldContentTitle() {
                    return baseConfig.getResponseFieldContentTitle();
                }
    
                @Override
                public String getResponseFieldSitePath() {
                    return baseConfig.getResponseFieldSitePath();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                docMap.put(Constants.TEXT_FRAGMENTS, viewHelper.createTextFragmentsByQuery());
            }
    
            // ContentTitle
            if (viewHelper != null) {
                docMap.put(fessConfig.getResponseFieldContentTitle(), viewHelper.getContentTitle(docMap));
                docMap.put(fessConfig.getResponseFieldContentDescription(), viewHelper.getContentDescription(docMap));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/QueryTestBase.java

                @Override
                public String getResponseFieldContentDescription() {
                    return "content_description";
                }
    
                @Override
                public String getResponseFieldContentTitle() {
                    return "content_title";
                }
    
                @Override
                public String getResponseFieldSitePath() {
                    return "site_path";
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

                        SCORE_SORT_VALUE, //
                        fessConfig.getResponseFieldContentDescription(), //
                        fessConfig.getResponseFieldContentTitle(), //
                        fessConfig.getResponseFieldSitePath(), //
                        fessConfig.getResponseFieldUrlLink(), //
                        fessConfig.getIndexFieldId(), //
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

            }
    
            @Override
            public String getIndexFieldPrimaryTerm() {
                return "_primary_term";
            }
    
            @Override
            public String getResponseFieldContentTitle() {
                return "title";
            }
    
            @Override
            public String getResponseFieldContentDescription() {
                return "description";
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                @Override
                public String getResponseFieldContentDescription() {
                    return "content_description";
                }
    
                @Override
                public String getResponseFieldContentTitle() {
                    return "content_title";
                }
    
                @Override
                public String getResponseFieldSitePath() {
                    return "site_path";
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                        final ViewHelper viewHelper = ComponentUtil.getViewHelper();
                        if (viewHelper != null && !docMap.isEmpty()) {
                            docMap.put(fessConfig.getResponseFieldContentTitle(), viewHelper.getContentTitle(docMap));
                            docMap.put(fessConfig.getResponseFieldContentDescription(), viewHelper.getContentDescription(docMap));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Field name for content title in the response.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getResponseFieldContentTitle();
    
        /**
         * Get the value for the key 'response.field.content_description'. <br>
         * The value is, e.g. content_description <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top