- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for SID_TYPE_WKN_GRP (0.09 sec)
-
src/main/java/jcifs/SID.java
int SID_TYPE_DOMAIN = 3; /** * SID type indicating a local group or alias. */ int SID_TYPE_ALIAS = 4; /** * SID type indicating a well-known group. */ int SID_TYPE_WKN_GRP = 5; /** * SID type indicating a deleted account. */ int SID_TYPE_DELETED = 6; /** * SID type indicating an invalid SID. */ int SID_TYPE_INVALID = 7;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
rpcSid.identifier_authority = new byte[] { 0, 0, 0, 0, 0, 5 }; rpcSid.sub_authority = new int[] { 32, 544 }; 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());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
assertEquals(8, SambaHelper.SID_TYPE_UNKNOWN); assertEquals(0, SambaHelper.SID_TYPE_USE_NONE); assertEquals(1, SambaHelper.SID_TYPE_USER); assertEquals(5, SambaHelper.SID_TYPE_WKN_GRP); } public void test_init() { ComponentUtil.setFessConfig(new MockFessConfig()); sambaHelper.init(); assertNotNull(sambaHelper.fessConfig); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
* SID type indicating a local group or alias. */ public static final int SID_TYPE_ALIAS = lsarpc.SID_NAME_ALIAS; /** * SID type indicating a well-known group. */ public static final int SID_TYPE_WKN_GRP = lsarpc.SID_NAME_WKN_GRP; /** * SID type indicating a deleted account. */ public static final int SID_TYPE_DELETED = lsarpc.SID_NAME_DELETED; /** * SID type indicating an invalid SID.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
/** * SID type for a user. */ public static final int SID_TYPE_USER = 1; /** * SID type for a well-known group. */ public static final int SID_TYPE_WKN_GRP = 5; /** * The Fess configuration. */ protected FessConfig fessConfig; /** * Constructor. */ public SambaHelper() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
case jcifs.SID.SID_TYPE_USER: case jcifs.SID.SID_TYPE_DOM_GRP: case jcifs.SID.SID_TYPE_DOMAIN: case jcifs.SID.SID_TYPE_ALIAS: case jcifs.SID.SID_TYPE_WKN_GRP: final rpc.unicode_string ustr = rpc.domains.domains[resp.sid_index].name; out.domainName = new UnicodeString(ustr, false).toString(); break; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
void testDisplayStringBuiltinAndWkn() { byte[] ident = new byte[] { 0, 0, 0, 0, 0, 5 }; // Well-known group SID wkn = new SID(buildSidT((byte) 1, ident, 32), jcifs.SID.SID_TYPE_WKN_GRP, "BUILTIN", "Administrators", false); assertEquals("Administrators", wkn.toDisplayString()); // BUILTIN with unknown type -> falls back to numeric toString
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0)