Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getCachedFacetResponse (0.17 seconds)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

         *
         * @param query the search query
         * @return the facet response
         * @throws FessSystemException if facet data cannot be loaded
         */
        public FacetResponse getCachedFacetResponse(final String query) {
            final OptionalThing<FessUserBean> userBean = ComponentUtil.getComponent(FessLoginAssist.class).getSavedUserBean();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            }
        }
    
        @Test
        public void test_getCachedFacetResponse() {
            ViewHelper viewHelper = new ViewHelper();
            viewHelper.init();
    
            try {
                viewHelper.getCachedFacetResponse("test query");
                assertTrue(true);
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        @Test
        public void test_asContentResponse() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
Back to Top