- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ActivityHelper (1.09 sec)
-
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
/** Configuration manager for Fess application settings. */ @Resource protected FessConfig fessConfig; /** Helper for managing user activity logging and tracking. */ @Resource protected ActivityHelper activityHelper; /** Manager for handling HTTP response operations. */ @Resource protected ResponseManager responseManager; /** Time manager for handling date and time operations. */ @ResourceRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
form.clearSecurityInfo(); try { final HtmlResponse loginRedirect = fessLoginAssist.loginRedirect(new LocalUserCredential(username, password), op -> {}, () -> { activityHelper.login(getUserBean()); userInfoHelper.deleteUserCodeFromCookie(request); return getHtmlResponse(); });
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/base/FessAdminAction.java
public ActionResponse hookBefore(final ActionRuntime runtime) { final String requestPath = runtime.getRequestPath(); final String executeName = runtime.getExecuteMethod().getName(); activityHelper.access(getUserBean(), requestPath, executeName); return super.hookBefore(runtime); } /** * Hook method called after action execution completes. * <p>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 9.7K bytes - Viewed (0)