- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getDomainName (0.18 sec)
-
src/main/java/jcifs/smb1/smb1/SID.java
* <pre> * toString: S-1-5-21-4133388617-793952518-2001621813-512 * toDisplayString: WNET\Domain Admins * getType: 2 * getTypeText: Domain group * getDomainName: WNET * getAccountName: Domain Admins * </pre> */ public class SID extends rpc.sid_t { public static final int SID_TYPE_USE_NONE = lsarpc.SID_NAME_USE_NONE;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
* * <pre> * toString: S-1-5-21-4133388617-793952518-2001621813-512 * toDisplayString: WNET\Domain Admins * getType: 2 * getTypeText: Domain group * getDomainName: WNET * getAccountName: Domain Admins * </pre> * * @internal */ public class SID extends rpc.sid_t implements jcifs.SID { private static final Logger log = LoggerFactory.getLogger(SID.class);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
* @param sids * The SIDs that should be resolved. After this function is called, the names associated with the SIDs * may be queried with the <tt>toDisplayString</tt>, <tt>getDomainName</tt>, and <tt>getAccountName</tt> * methods. */ @Override public void resolveSids ( CIFSContext tc, String authorityServerName, jcifs.SID[] sids ) throws CIFSException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
} public String getHomeDrive () { return this.homeDrive; } public String getServerName () { return this.serverName; } public String getDomainName () { return this.domainName; } public SID getUserSid () { return this.userSid; } public SID getGroupSid () { return this.groupSid; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11.4K bytes - Viewed (0) -
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 Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 23 01:54:36 UTC 2024 - 17.9K bytes - Viewed (0) -
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 Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 18.9K bytes - Viewed (0) -
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 * <tt>getType()</tt>, <tt>getDomainName()</tt>, <tt>getAccountName()</tt>, * or <tt>toString()</tt> is called, the names will attempt to be * resolved. If the names cannot be resolved (e.g. due to temporary
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 26K bytes - Viewed (1)