- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for clearSecurityInfo (0.92 sec)
-
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
return asIndexPage(null).useForm(LoginForm.class); } private HtmlResponse asIndexPage(final LoginForm form) { if (form != null) { form.clearSecurityInfo(); } return asHtml(virtualHost(path_Login_IndexJsp)).renderWith(data -> { RenderDataUtil.register(data, "notification", fessConfig.getNotificationLogin()); saveToken(); });
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java
* @return the HTML response */ @Execute public HtmlResponse changePassword(final ProfileForm form) { final VaErrorHook toIndexPage = () -> { form.clearSecurityInfo(); return asIndexHtml(); }; validatePasswordForm(form, toIndexPage); if (!getUserBean().isPresent()) { logger.warn("User session not found during password change");Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 4.5K bytes - Viewed (0)