Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getOwnerGroup (0.47 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/SmbResource.java

         */
        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 if an I/O error occurs
         */
        SID getOwnerGroup(boolean resolve) throws IOException;
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 28K bytes
    - Click Count (1)
  2. src/main/java/jcifs/smb/SmbFile.java

                }
                return ownerUser;
            }
        }
    
        @Override
        public SID getOwnerGroup() throws IOException {
            return getOwnerGroup(true);
        }
    
        @Override
        public SID getOwnerGroup(final boolean resolve) throws IOException {
            try (SmbTreeHandleImpl th = ensureTreeConnected()) {
    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)
  3. src/test/java/jcifs/SmbResourceTest.java

                when(mockResource.getOwnerGroup()).thenReturn(mockSID);
                when(mockResource.getOwnerGroup(true)).thenReturn(mockSID);
    
                // When
                SID ownerUser1 = mockResource.getOwnerUser();
                SID ownerUser2 = mockResource.getOwnerUser(false);
                SID ownerGroup1 = mockResource.getOwnerGroup();
                SID ownerGroup2 = mockResource.getOwnerGroup(true);
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 35K bytes
    - Click Count (0)
Back to Top