Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for getDomainName (0.08 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

                        }
                        final SID ownerUser = file.getOwnerUser();
                        if (ownerUser != null) {
                            final String[] ownerAttributes = { ownerUser.getAccountName(), ownerUser.getDomainName() };
                            responseData.addMetaData(SMB_OWNER_ATTRIBUTES, ownerAttributes);
                        }
                    } catch (final IOException e) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/SIDTest.java

            SID sid = new SID(rpcSid, SID.SID_TYPE_WKN_GRP, "BUILTIN", "Administrators", false);
            assertEquals(SID.SID_TYPE_WKN_GRP, sid.getType());
            assertEquals("BUILTIN", sid.getDomainName());
            assertEquals("Administrators", sid.getAccountName());
            assertEquals(adminSidString, sid.toString());
        }
    
        /**
         * Test converting a SID to a byte array.
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

                        }
                        final SID ownerUser = file.getOwnerUser();
                        if (ownerUser != null) {
                            final String[] ownerAttributes = { ownerUser.getAccountName(), ownerUser.getDomainName() };
                            responseData.addMetaData(SMB_OWNER_ATTRIBUTES, ownerAttributes);
                        }
                    } catch (final IOException e) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 23K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbResource.java

         * the security descriptor associated with this file or directory.
         * <p>
         * Initially, the SIDs within each ACE will not be resolved however when
         * <code>getType()</code>, <code>getDomainName()</code>, <code>getAccountName()</code>,
         * or <code>toString()</code> is called, the names will attempt to be
         * resolved. If the names cannot be resolved (e.g. due to temporary
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

         * the security descriptor associated with this file or directory.
         * <p>
         * Initially, the SIDs within each ACE will not be resolved however when
         * {@code getType()}, {@code getDomainName()}, {@code getAccountName()},
         * or {@code toString()} is called, the names will attempt to be
         * resolved. If the names cannot be resolved (e.g. due to temporary
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top