Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateConfiguration (0.07 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertFalse(helper2.isEoled());
        }
    
        public void test_updateConfiguration() {
            assertNotNull(systemHelper.updateConfiguration());
            systemHelper.addUpdateConfigListener("XXX", () -> "OK");
            assertTrue(systemHelper.updateConfiguration().contains("XXX: OK"));
        }
    
        public void test_isChangedClusterState() {
            systemHelper.isChangedClusterState(0);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                });
            }
        }
    
        /**
         * Updates the application configuration.
         *
         * @return A string containing the results of the update.
         */
        public String updateConfiguration() {
            final StringBuilder buf = new StringBuilder();
            updateConfigListenerMap.entrySet().stream().forEach(e -> {
                buf.append(e.getKey()).append(": ");
                try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top