Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for logNotificationHelper (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            super.setUp(testInfo);
        }
    
        @Test
        public void test_constructor() {
            LogNotificationHelper helper = new LogNotificationHelper();
            assertNotNull(helper);
        }
    
        @Test
        public void test_init_and_destroy() {
            LogNotificationHelper helper = new LogNotificationHelper();
            // init() registers a TimeoutTarget with TimeoutManager
            helper.init();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java

    import java.util.Map;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.timer.TimeoutTarget;
    import org.codelibs.fess.helper.LogNotificationHelper;
    import org.codelibs.fess.helper.LogNotificationHelper.LogNotificationEvent;
    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/timer/LogNotificationTargetTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.timer;
    
    import java.util.List;
    
    import org.codelibs.fess.helper.LogNotificationHelper;
    import org.codelibs.fess.helper.LogNotificationHelper.LogNotificationEvent;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/LogNotificationAppenderTest.java

    import org.apache.logging.log4j.core.LogEvent;
    import org.apache.logging.log4j.core.impl.Log4jLogEvent;
    import org.apache.logging.log4j.message.SimpleMessage;
    import org.codelibs.fess.helper.LogNotificationHelper;
    import org.codelibs.fess.helper.LogNotificationHelper.LogNotificationEvent;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

    import org.apache.logging.log4j.core.config.plugins.PluginElement;
    import org.apache.logging.log4j.core.config.plugins.PluginFactory;
    import org.codelibs.fess.helper.LogNotificationHelper;
    import org.codelibs.fess.helper.LogNotificationHelper.LogNotificationEvent;
    
    /**
     * Custom Log4j2 Appender that captures log events into a buffer for notification purposes.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)
  6. src/main/resources/fess.xml

    	</component>
    	<component name="notificationHelper" class="org.codelibs.fess.helper.NotificationHelper">
    	</component>
    	<component name="logNotificationHelper" class="org.codelibs.fess.helper.LogNotificationHelper">
    	</component>
    	<component name="pathMappingHelper" class="org.codelibs.fess.helper.PathMappingHelper">
    	</component>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

    import java.util.Map;
    import java.util.stream.Collectors;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.helper.LogNotificationHelper.LogNotificationEvent;
    import org.codelibs.fess.helper.NotificationHelper;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

     */
    package org.codelibs.fess.job;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    import org.codelibs.fess.helper.LogNotificationHelper.LogNotificationEvent;
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
Back to Top