- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ActionForm (0.26 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
import org.codelibs.fess.util.ComponentUtil; import jakarta.validation.constraints.Size; /** * The form for maintenance actions. */ public class ActionForm { /** * Default constructor. */ public ActionForm() { // nothing } /** * The flag to replace aliases. */ @Size(max = 10) public String replaceAliases; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
public HtmlResponse index() { saveToken(); return asIndexHtml(); } private HtmlResponse asIndexHtml() { return asHtml(path_AdminMaintenance_AdminMaintenanceJsp).useForm(ActionForm.class, op -> op.setup(f -> { f.replaceAliases = Constants.ON; f.resetDictionaries = null; })); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0)