- Sort Score
- Result 10 results
- Languages All
Results 71 - 73 of 73 for getUserName (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
*/ public static OptionalEntity<ScheduledJob> getScheduledJob(final CreateForm form) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final String username = systemHelper.getUsername(); final long currentTime = systemHelper.getCurrentTimeAsLong(); return getEntity(form, username, currentTime).map(entity -> { entity.setUpdatedBy(username);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 22.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
*/ public String getDomain() { return domain; } /** * Returns the username. * * @return the username */ public String getUsername() { return username; } /** * Returns the password in plain text or {@code null} if the raw password * hashes were used to construct this {@code NtlmPasswordAuthentication}
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} }); } /** * Gets the username of the current user. * * @return The username, or "guest" if not logged in. */ public String getUsername() { return getRequestManager().findUserBean(FessUserBean.class).map(FessUserBean::getUserId).orElse(Constants.GUEST_USER); } /** * Gets the request manager. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0)