- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getOwnerGroupSid (0.07 seconds)
-
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 */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.4K bytes - Click Count (0) -
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);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.6K bytes - Click Count (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) {
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)