Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOldIPAddresses (0.13 sec)

  1. src/test/java/jcifs/internal/witness/WitnessNotificationTest.java

            assertTrue(notification.getTimestamp() <= System.currentTimeMillis());
            assertTrue(notification.getNewIPAddresses().isEmpty());
            assertTrue(notification.getOldIPAddresses().isEmpty());
            assertEquals(WitnessNotification.WITNESS_RESOURCE_STATE_UNKNOWN, notification.getFlags());
        }
    
        @Test
        void testAddIPAddresses() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessNotification.java

            return newIPAddresses;
        }
    
        /**
         * Gets the list of old IP addresses.
         *
         * @return the old IP addresses
         */
        public List<WitnessIPAddress> getOldIPAddresses() {
            return oldIPAddresses;
        }
    
        /**
         * Gets the notification flags.
         *
         * @return the flags
         */
        public int getFlags() {
            return flags;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top