- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getSecurityDescriptor (0.08 seconds)
-
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java
} @Test @DisplayName("Test getSecurityDescriptor after successful read") void testGetSecurityDescriptorAfterRead() throws Exception { byte[] buffer = createValidSecurityDescriptorBuffer(); setErrorCode(response, 0); response.readDataWireFormat(buffer, 0, buffer.length); SecurityDescriptor sd = response.getSecurityDescriptor(); assertNotNull(sd);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java
} /** * Returns the security descriptor retrieved from the server. * @return the securityDescriptor containing access control information */ public final SecurityDescriptor getSecurityDescriptor() { return this.securityDescriptor; } @Override protected int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFile.java
response = th.send(request, response, RequestParam.NO_RETRY); return response.getSecurityDescriptor(); } } @Override public ACE[] getSecurity() throws IOException { return getSecurity(false); } @Override
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0)