Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOwnerGroup (0.08 sec)

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

            }
        }
    
    
        @Test
        public void testGetGroup () throws IOException {
            try ( SmbResource f = getDefaultShareRoot() ) {
                try {
                    jcifs.SID security = f.getOwnerGroup();
                    assertNotNull(security);
                }
                catch ( SmbUnsupportedOperationException e ) {
                    Assume.assumeTrue("No Ntsmbs", false);
                }
            }
        }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResource.java

         * @throws IOException
         */
        SID getOwnerGroup () throws IOException;
    
    
        /**
         * Return the owner group SID for this file or directory
         * 
         * @param resolve
         *            whether to resolve the group name
         * @return the owner group SID, <code>null</code> if not present
         * @throws IOException
         */
        SID getOwnerGroup ( boolean resolve ) throws IOException;
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (1)
Back to top