- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for maximalAccess (0.04 sec)
-
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
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java
0x00, // Reserved 0x01, 0x00, 0x00, 0x00, // ShareFlags 0x08, 0x00, 0x00, 0x00, // Capabilities (byte) 0xFF, 0x01, 0x1F, 0x00 // MaximalAccess }; // When int bytesRead = response.readBytesWireFormat(wireData, 0); // Then assertEquals(16, bytesRead); assertEquals(wireData.length, bytesRead);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/TreeConnectResponseTest.java
} @Test @DisplayName("Should handle maximal access") void testMaximalAccess() throws Exception { // Given setPrivateField(response, "maximalAccess", 0x001F01FF); // When int access = response.getMaximalAccess(); // Then assertEquals(0x001F01FF, access, "Should return maximal access value"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0)