Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for verifyCrudMode (3.78 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

         * @return HTML response redirecting to the list page after creation
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml);
            validate(form, messages -> {}, this::asEditHtml);
            validateFields(form.doc, v -> throwValidationError(v, this::asEditHtml));
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 22.7K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

         *
         * @param crudMode the actual CRUD mode
         * @param expectedMode the expected CRUD mode
         * @param errorHook the error hook to call if verification fails
         */
        protected void verifyCrudMode(final int crudMode, final int expectedMode, final VaErrorHook errorHook) {
            if (crudMode != expectedMode) {
                throwValidationError(messages -> {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top