- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 234 for UserName (0.36 sec)
-
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
final String username = account.username(); if (logger.isDebugEnabled()) { logger.debug("homeAccountId:{} username:{}", homeAccountId, username); } permissionSet.add(systemHelper.getSearchRoleByUser(homeAccountId)); permissionSet.add(systemHelper.getSearchRoleByUser(username));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
* domain, username, and password. Parameters that are {@code null} * will be substituted with {@code jcifs.smb.client.domain}, * {@code jcifs.smb.client.username}, {@code jcifs.smb.client.password} * property values. * * @param tc * context to use * @param domain the authentication domain * @param username the username to authenticate with
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
* * @param form the login form containing username and password * @return the HTML response after login attempt */ @Execute public HtmlResponse login(final LoginForm form) { validate(form, messages -> {}, () -> asIndexPage(form)); verifyToken(() -> asIndexPage(form)); final String username = form.username; final String password = form.password;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessUserNotFoundException.java
private static final long serialVersionUID = 1L; /** * Constructs a new FessUserNotFoundException with the specified username. * * @param username the username that was not found */ public FessUserNotFoundException(final String username) { super("User is not found: " + username); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
* * @param form the form containing duplicate host data * @param username the current username * @param currentTime the current timestamp * @return optional duplicate host entity */ public static OptionalEntity<DuplicateHost> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE:
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
public void update(final User user) { final String username = user.getName(); final String password = user.getOriginalPassword(); changePassword(username, password); } @Override public void delete(final User user) { final String username = user.getName(); if (isTargetUser(username)) { executeCommand(deleteCommand, username, StringUtil.EMPTY); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/util/InputValidator.java
} /** * Validates username * * @param username the username to validate * @throws IllegalArgumentException if username is invalid */ public static void validateUsername(String username) { if (username == null) { return; // Null username allowed for anonymous } if (username.length() > MAX_USERNAME_LENGTH) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
* Generates the NTOWFv2 hash for the given domain, username, and password. * * @param domain the authentication domain * @param username the username * @param password the password * * @return the calculated mac */ public static byte[] nTOWFv2(final String domain, final String username, final String password) { return nTOWFv2(domain, username, getNTHash(password)); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0)