- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getDomainSid (0.08 sec)
-
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
sambaHelper.init(); assertEquals("1test user", sambaHelper.getAccountId(USER_SID)); } private static final SID USER_SID = new SID() { @Override public SID getDomainSid() { return null; } @Override public int getRid() { return 0; } @Override public String toDisplayString() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:55:43 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
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/SID.java
public static final int SID_TYPE_INVALID = 7; /** * */ public static final int SID_TYPE_UNKNOWN = 8; /** * * @return domain SID */ SID getDomainSid (); /** * Get the RID * * This is the last subauthority identifier * * @return the RID */ int getRid (); /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
try { final CIFSContext context = file.getContext(); final SID[] children = context.getSIDResolver().getGroupMemberSids(context, file.getServer(), sid.getDomainSid(), sid.getRid(), jcifs.smb.SID.SID_FLAG_RESOLVE_SIDS); for (final SID child : children) { if (!sidSet.contains(child)) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 23 01:54:36 UTC 2024 - 17.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
for (int i = 0; i < this.sub_authority_count; i++) { this.sub_authority[i] = sid.sub_authority[i]; } } } public SID getDomainSid() { return new SID(this, SID_TYPE_DOMAIN, this.domainName, null, getType() != SID_TYPE_DOMAIN); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 26.6K bytes - Viewed (0)