- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getOwnerUserSid (0.05 sec)
-
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
} } @Test @DisplayName("Test getOwnerUserSid returns correct SID") void testGetOwnerUserSid() throws SMBProtocolDecodingException { prepareMinimalSecurityDescriptorBuffer(testBuffer, 0, true, false, false); securityDescriptor.decode(testBuffer, 0, testBuffer.length); SID ownerSid = securityDescriptor.getOwnerUserSid(); assertNotNull(ownerSid);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
return this.ownerGroupSid; } /** * Gets the owner user SID of this security descriptor. * * @return the security identifier of the owner user */ public final SID getOwnerUserSid() { return this.ownerUserSid; } /** * Decodes a security descriptor from a byte buffer. * * @param buffer the byte buffer containing the security descriptor data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
try (SmbTreeHandleImpl th = ensureTreeConnected()) { final SecurityDescriptor desc = querySecurity(th, SecurityInfo.OWNER_SECURITY_INFO); final SID ownerUser = desc.getOwnerUserSid(); if (ownerUser == null) { return null; } String server = this.fileLocator.getServerWithDfs(); if (resolve) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)