- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for SID_TYPE_UNKNOWN (0.09 sec)
-
src/main/java/jcifs/SID.java
* */ public static final int SID_TYPE_DELETED = 6; /** * */ 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 *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
public static final int SID_TYPE_DELETED = lsarpc.SID_NAME_DELETED; public static final int SID_TYPE_INVALID = lsarpc.SID_NAME_INVALID; public static final int SID_TYPE_UNKNOWN = lsarpc.SID_NAME_UNKNOWN; static final String[] SID_TYPE_NAMES = { "0", "User", "Domain group", "Domain", "Local group", "Builtin group",
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
return SID_TYPE_NAMES[ this.type ]; } @Override public String getDomainName () { if ( this.origin_server != null ) resolveWeak(); if ( this.type == SID_TYPE_UNKNOWN ) { String full = toString(); return full.substring(0, full.length() - getAccountName().length() - 1); } return this.domainName; } @Override
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/org/codelibs/fess/helper/SambaHelper.java
public static final int SID_TYPE_DOM_GRP = 2; public static final int SID_TYPE_DOMAIN = 3; public static final int SID_TYPE_INVALID = 7; public static final int SID_TYPE_UNKNOWN = 8; public static final int SID_TYPE_USE_NONE = 0; public static final int SID_TYPE_USER = 1; public static final int SID_TYPE_WKN_GRP = 5; protected FessConfig fessConfig;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:58:21 UTC 2024 - 3.3K bytes - Viewed (0)