- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for sAMAccountName (0.1 sec)
-
src/main/java/org/codelibs/fess/ldap/LdapManager.java
final Attribute attribute = searchResult.getAttributes().get("sAMAccountName"); if (logger.isDebugEnabled()) { logger.debug("sAMAccountName: {}", attribute); } if (attribute != null && attribute.get() instanceof String sAMAccountName) { return OptionalEntity.of(sAMAccountName); } }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 86.3K bytes - Viewed (0) -
src/main/java/jcifs/SID.java
* toString() is returned. * * @return display format, potentially with resolved names */ String toDisplayString(); /** * Return the sAMAccountName of this SID unless it could not * be resolved in which case the numeric RID is returned. If this * SID is a domain SID, this method will return an empty String. * * @return the account name
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
final String full = toString(); return full.substring(0, full.length() - getAccountName().length() - 1); } return domainName; } /** * Return the sAMAccountName of this SID unless it could not * be resolved in which case the numeric RID is returned. If this * SID is a domain SID, this method will return an empty String. */ /**
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Whether to use lowercase for LDAP permission names. ldap.lowercase.permission.name=false # Whether to allow empty permissions in LDAP. ldap.allow.empty.permission=true # Whether to use samAccountName for LDAP group. ldap.samaccountname.group=false # Whether LDAP role search for user is enabled. ldap.role.search.user.enabled=true # Whether LDAP role search for group is enabled. ldap.role.search.group.enabled=true
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'ldap.samaccountname.group'. <br> * The value is, e.g. false <br> * comment: Whether to use samAccountName for LDAP group. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getLdapSamaccountnameGroup(); /** * Is the property for the key 'ldap.samaccountname.group' true? <br>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)