Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for revalidated (0.05 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

            }
            return redirect(getClass());
        }
    
        /**
         * Reloads the document index by closing and reopening it.
         *
         * @param form the action form (validated but not used for configuration)
         * @return HTML response redirecting to the maintenance page
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse reloadDocIndex(final ActionForm form) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 23K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

         * Only configured label values are accepted to prevent query injection.
         *
         * @param request the HTTP request
         * @return a map of field names to their validated filter values
         */
        protected Map<String, String[]> parseFieldFilters(final HttpServletRequest request) {
            final Map<String, String[]> fields = new HashMap<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/validation/CronExpressionTest.java

            // Validate all groups
            violations = validator.validate(bean);
            assertEquals(1, violations.size()); // Only default group is validated
        }
    
        // Test custom message
        @Test
        public void test_customMessage() {
            CustomMessageBean bean = new CustomMessageBean();
            bean.setCronWithCustomMessage("invalid");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        }
    
        /**
         * Validates the OAuth2 state parameter.
         * @param session The HTTP session containing stored state data.
         * @param state The state parameter to validate.
         * @return The validated state data.
         */
        protected StateData validateState(final HttpSession session, final String state) {
            if (StringUtils.isNotEmpty(state)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
Back to Top