Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getSecurityDescriptor (0.76 sec)

  1. 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);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. 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;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. 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
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top