Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getValidationError (0.06 sec)

  1. src/main/java/org/codelibs/fess/suggest/request/Request.java

         * @return A Promise that will be resolved with the response or rejected with an error.
         */
        public Deferred<T>.Promise execute(final Client client) {
            final String error = getValidationError();
            if (!Strings.isNullOrEmpty(error)) {
                throw new IllegalArgumentException(error);
            }
    
            final Deferred<T> deferred = new Deferred<>();
            try {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sun Nov 23 11:21:40 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/BadWordSettings.java

            return concat;
        }
    
        /**
         * Add a bad word.
         * @param badWord Bad word
         */
        public void add(final String badWord) {
            final String validationError = getValidationError(badWord);
            if (validationError != null) {
                throw new IllegalArgumentException("Validation error: " + validationError);
            }
    
            if (logger.isDebugEnabled()) {
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sun Nov 23 03:02:17 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top