Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getMaximalAccess (0.29 seconds)

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

  1. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

            return this.capabilities;
        }
    
        /**
         * Returns the maximal access rights that the user has on this share.
         *
         * @return the maximalAccess
         */
        public int getMaximalAccess() {
            return this.maximalAccess;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.TreeConnectResponse#getTid()
         */
        @Override
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java

            assertEquals((byte) 0x01, response.getShareType());
            assertEquals(0x8001, response.getShareFlags());
            assertEquals(0x28, response.getCapabilities());
            assertEquals(0x1F01FF, response.getMaximalAccess());
        }
    
        @DisplayName("Should throw exception for invalid structure size")
        @ParameterizedTest
        @ValueSource(ints = { 0, 1, 2, 4, 8, 15, 17, 32, 64, 65535 })
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 19.3K bytes
    - Click Count (0)
Back to Top