Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for FessActionValidator (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/validation/FessActionValidator.java

     * message handling and runtime group validation.
     *
     * @param <MESSAGES> the type of user messages used by this validator
     */
    public class FessActionValidator<MESSAGES extends UserMessages> extends ActionValidator<MESSAGES> {
    
        /**
         * Constructs a new FessActionValidator with the specified components.
         *
         * @param requestManager the request manager for handling HTTP requests
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/validation/FessActionValidatorTest.java

            assertEquals("FessActionValidator should be in correct package", "org.codelibs.fess.validation.FessActionValidator",
                    FessActionValidator.class.getName());
        }
    
        @Test
        public void test_inheritance() {
            assertTrue("FessActionValidator should extend ActionValidator", ActionValidator.class.isAssignableFrom(FessActionValidator.class));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 2.8K bytes
    - Click Count (0)
Back to Top