Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for areSignaturesActive (0.29 sec)

  1. src/test/java/jcifs/smb/SmbTreeHandleInternalTest.java

        @Test
        @DisplayName("areSignaturesActive(): returns configured boolean false")
        void areSignaturesActive_false() throws Exception {
            // Arrange
            when(handle.areSignaturesActive()).thenReturn(false);
    
            // Act
            boolean result = handle.areSignaturesActive();
    
            // Assert
            assertFalse(result);
            verify(handle).areSignaturesActive();
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeHandleInternal.java

         * @return whether the session uses SMB signing
         * @throws CIFSException if a general CIFS error occurs
         * @throws SmbException if an SMB-specific error occurs
         */
        boolean areSignaturesActive() throws CIFSException;
    
        /**
         * Internal/testing use only
         *
         * @return attached session
         */
        SmbSession getSession();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top