Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setEventType (0.87 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

                this.sourceMap = sourceMap;
            }
    
            @Override
            public String getEventType() {
                return eventType;
            }
    
            public void setEventType(String eventType) {
                this.eventType = eventType;
            }
        }
    
        // Test null values implementation
        private static class NullSearchLogEvent implements SearchLogEvent {
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessNotification.java

         */
        public WitnessEventType getEventType() {
            return eventType;
        }
    
        /**
         * Sets the event type.
         *
         * @param eventType the event type
         */
        public void setEventType(WitnessEventType eventType) {
            this.eventType = eventType;
        }
    
        /**
         * Gets the resource name.
         *
         * @return the resource name
         */
        public String getResourceName() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/witness/WitnessClient.java

                // Set event type based on message type
                WitnessEventType eventType = convertMessageTypeToEventType(message.getType());
                notification.setEventType(eventType);
                notification.setTimestamp(message.getTimestamp());
    
                // Set resource name based on message content
                if (message.getResourceName() != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
Back to top