Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getShareSecurity (0.06 sec)

  1. src/test/java/jcifs/SmbResourceTest.java

                when(mockResource.getSecurity(true)).thenReturn(expectedACEs);
                when(mockResource.getShareSecurity(false)).thenReturn(expectedACEs);
    
                // When
                ACE[] security1 = mockResource.getSecurity();
                ACE[] security2 = mockResource.getSecurity(true);
                ACE[] shareSecurity = mockResource.getShareSecurity(false);
    
                // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 35K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResource.java

         * look at the <i>Properties</i> for a share. You will see two tabs - one
         * for "Share Permissions" and another for "Security". These correspond to
         * the ACLs returned by <code>getShareSecurity</code> and <code>getSecurity</code>
         * respectively.
         *
         * @param resolveSids
         *            Attempt to resolve the SIDs within each ACE form
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
Back to top