- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getOwnerGroupSid (1.55 sec)
-
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
} @Test @DisplayName("Test getOwnerGroupSid returns correct SID") void testGetOwnerGroupSid() throws SMBProtocolDecodingException { prepareMinimalSecurityDescriptorBuffer(testBuffer, 0, false, true, false); securityDescriptor.decode(testBuffer, 0, testBuffer.length); SID groupSid = securityDescriptor.getOwnerGroupSid(); assertNotNull(groupSid);
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.aces; } /** * Gets the owner group SID of this security descriptor. * * @return the security identifier of the owner group */ public final SID getOwnerGroupSid() { return this.ownerGroupSid; } /** * Gets the owner user SID of this security descriptor. * * @return the security identifier of the owner user */
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.GROUP_SECURITY_INFO); final SID ownerGroup = desc.getOwnerGroupSid(); if (ownerGroup == 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)