- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getActionClass (0.06 sec)
-
src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java
} /** * Gets the action class associated with this exception. * * @return the action class that requires specific user roles */ public Class<? extends RootAction> getActionClass() { return actionClass; } /** * Overrides fillInStackTrace to return null for performance optimization. * This prevents stack trace generation for this exception type. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 19 08:04:23 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
public ActionResponse godHandPrologue(final ActionRuntime runtime) { try { return super.godHandPrologue(runtime); } catch (final UserRoleLoginException e) { return redirect(e.getActionClass()); } } /** * Hook method called before action execution. * <p> * This method logs user access activity for the current request. * </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)