Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/test/java/jcifs/tests/FileAttributesTest.java

            }
        }
    
    
        @Test
        public void testShareSecurity () throws IOException {
            try ( SmbResource f = getDefaultShareRoot() ) {
                try {
                    jcifs.ACE[] security = f.getShareSecurity(true);
                    Assume.assumeNotNull((Object) security);
                }
                catch ( SmbUnsupportedOperationException e ) {
                    Assume.assumeTrue("No Ntsmbs", false);
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResource.java

         * the ACLs returned by <tt>getShareSecurity</tt> and <tt>getSecurity</tt>
         * respectively.
         * 
         * @param resolveSids
         *            Attempt to resolve the SIDs within each ACE form
         *            their numeric representation to their corresponding account names.
         * @return array of ACEs
         * @throws IOException
         */
        ACE[] getShareSecurity ( boolean resolveSids ) throws IOException;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
Back to top