Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for addErrorsDocidNotFound (0.71 sec)

  1. src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java

            }
            if (doc == null) {
                saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId));
                return redirect(ErrorAction.class);
            }
    
            final String content = viewHelper.createCacheContent(doc, form.hq);
            if (content == null) {
                saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId));
                return redirect(ErrorAction.class);
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

            } catch (final Exception e) {
                logger.warn("Failed to request: {}", form.docId, e);
            }
            if (doc == null) {
                saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId));
                return redirect(ErrorAction.class);
            }
            final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldUrl(), String.class);
            if (url == null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * </pre>
         * @param property The property name for the message. (NotNull)
         * @param arg0 The parameter arg0 for message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addErrorsDocidNotFound(String property, String arg0) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(ERRORS_docid_not_found, arg0));
            return this;
        }
    
        /**
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top