- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 176 for editor (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/EditBody.java
import org.codelibs.fess.app.web.admin.crawlinginfo.EditForm; /** * Request body class for crawling info edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for crawling information management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/EditBody.java
import org.codelibs.fess.app.web.admin.dict.protwords.EditForm; /** * Request body class for protected words dictionary edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for protected words dictionary management operations. */ public class EditBody extends EditForm { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/EditBody.java
import org.codelibs.fess.app.web.admin.dict.stemmeroverride.EditForm; /** * Request body class for stemmer override dictionary edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for stemmer override dictionary management operations. */ public class EditBody extends EditForm { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
} /** * Displays the form for editing an existing scheduled job. * * @param form the edit form containing the ID of the job to edit * @return HTML response for the job edit form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, this::asListHtml); final String id = form.id;
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/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java
} /** * Displays the form for editing an existing related content item. * * @param form the edit form containing the ID of the item to edit * @return HTML response for the edit form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, this::asListHtml); final String id = form.id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
registerFileConfigItems(data); }); } /** * Displays the edit file authentication page. * * @param form the edit form * @return HTML response for the edit page */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, this::asListHtml); final String id = form.id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
form.crudMode = CrudMode.CREATE; }); }); } /** * Show the edit page. * @param form The edit form. * @return The HTML response. */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, this::asListHtml); final String id = form.id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java
} /** * Displays the form for editing an existing request header item. * * @param form the edit form containing the ID of the item to edit * @return HTML response for the edit form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, this::asListHtml); final String id = form.id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
} /** * Displays the form for editing an existing synonym item. * * @param form the edit form containing synonym item data * @return HTML response for the edit synonym form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) { validate(form, messages -> {}, () -> asListHtml(form.dictId));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/api/admin/general/EditBody.java
import org.codelibs.fess.app.web.admin.general.EditForm; /** * Request body class for general settings edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for general settings management operations. */ public class EditBody extends EditForm { /** * Default constructor. */ public EditBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0)