- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 367 for UserName (0.06 sec)
-
src/main/java/org/codelibs/fess/app/service/UserService.java
} /** * Retrieves a user by their username. * * @param username the username to search for * @return an OptionalEntity containing the user if found */ public OptionalEntity<User> getUserByName(final String username) { return userBhv.selectEntity(cb -> { cb.query().setName_Equal(username); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileAuthentication.java
this.updatedTime = value; } public String getUsername() { checkSpecifiedProperty("username"); return convertEmptyToNull(username); } public void setUsername(String value) { registerModifiedProperty("username"); this.username = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebAuthentication.java
this.updatedTime = value; } public String getUsername() { checkSpecifiedProperty("username"); return convertEmptyToNull(username); } public void setUsername(String value) { registerModifiedProperty("username"); this.username = value; } public String getWebConfigId() { checkSpecifiedProperty("webConfigId");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
private static class TestLoginCredential implements LoginCredential { private final String username; public TestLoginCredential(String username) { this.username = username; } @Override public String toString() { return username; } } private static class TestSsoAuthenticator implements SsoAuthenticator {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
docs/de/docs/tutorial/security/first-steps.md
Betrachten wir es also aus dieser vereinfachten Sicht: * Der Benutzer gibt den `username` und das `password` im Frontend ein und drückt `Enter`. * Das Frontend (das im Browser des Benutzers läuft) sendet diesen `username` und das `password` an eine bestimmte URL in unserer API (deklariert mit `tokenUrl="token"`). * Die API überprüft den `username` und das `password` und antwortet mit einem „Token“ (wir haben davon noch nichts implementiert).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java
void delete(User user); /** * Changes the password for the specified user. * @param username The username for which to change the password. * @param password The new password. * @return True if the password was successfully changed, false otherwise. */ boolean changePassword(String username, String password); /** * Loads user information from the authentication chain.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
cmd/ftp-server-driver.go
} } return nil } func (driver *ftpDriver) CheckPasswd(c *ftp.Context, username, password string) (ok bool, err error) { stopFn := globalFtpMetrics.log(c, username) defer stopFn(0, err) if globalIAMSys.LDAPConfig.Enabled() { sa, _, err := globalIAMSys.getServiceAccount(context.Background(), username) if err != nil && !errors.Is(err, errNoSuchServiceAccount) { return false, err }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.3K bytes - Viewed (0) -
docs/es/docs/tutorial/extra-models.md
UserInDB(**user_dict) ``` sería equivalente a algo como: ```Python UserInDB( username="john", password="secret", email="******@****.***", full_name=None, ) ``` O más exactamente, usando `user_dict` directamente, con cualquier contenido que pueda tener en el futuro: ```Python UserInDB( username = user_dict["username"], password = user_dict["password"], email = user_dict["email"],
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/index.jsp
</c:if> <c:choose> <c:when test="${!empty username && username != 'guest'}"> <li class="nav-item"> <div class="dropdown"> <a id="userMenu" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false"> <em class="fa fa-fw fa-user">${username} </a>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:58:45 UTC 2025 - 7K bytes - Viewed (0) -
docs/es/docs/tutorial/request-forms.md
Por ejemplo, en una de las formas en las que se puede usar la especificación OAuth2 (llamada "password flow") se requiere enviar un `username` y `password` como campos de formulario. La <abbr title="specification">especificación</abbr> requiere que los campos se llamen exactamente `username` y `password`, y que se envíen como campos de formulario, no JSON.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.9K bytes - Viewed (0)