Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for batean (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java

         * to their designated admin action class or to the root if no specific action is available.
         *
         * @param user the authenticated user bean containing role information
         * @return HTML response redirecting to the appropriate admin interface
         */
        protected HtmlResponse redirectByUser(final FessUserBean user) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

            keyMatchBhv.delete(keyMatch, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * Set up list conditions.
         *
         * @param cb The condition bean.
         * @param keyMatchPager The pager for key matches.
         */
        protected void setupListCondition(final KeyMatchCB cb, final KeyMatchPager keyMatchPager) {
            if (StringUtil.isNotBlank(keyMatchPager.term)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java

         */
        public DefaultCorsHandler() {
            super();
        }
    
        /**
         * Registers this CORS handler with the factory for configured allowed origins.
         * This method is automatically called after bean initialization.
         */
        @PostConstruct
        public void register() {
            final CorsHandlerFactory factory = ComponentUtil.getCorsHandlerFactory();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.entity.FessUser;
    import org.lastaflute.web.login.TypicalUserBean;
    
    /**
     * The user bean for Fess.
     *
     * @author jflute
     */
    public class FessUserBean extends TypicalUserBean<String> { // #change_it also LoginAssist
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * Sets up the list condition for the role type query.
         * @param cb The role type condition bean.
         * @param roleTypePager The role type pager.
         */
        protected void setupListCondition(final RoleTypeCB cb, final RoleTypePager roleTypePager) {
            if (roleTypePager.id != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/LabelTypeService.java

            if (labelTypeHelper != null) {
                labelTypeHelper.refresh(getLabelTypeList());
            }
        }
    
        /**
         * Set up list conditions.
         *
         * @param cb The condition bean.
         * @param labelTypePager The pager for label types.
         */
        protected void setupListCondition(final LabelTypeCB cb, final LabelTypePager labelTypePager) {
            if (StringUtil.isNotBlank(labelTypePager.name)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

            });
            ComponentUtil.getJobHelper().remove(scheduledJob);
        }
    
        /**
         * Sets up the list condition for the scheduled job query.
         * @param cb The scheduled job condition bean.
         * @param scheduledJobPager The scheduled job pager.
         */
        protected void setupListCondition(final ScheduledJobCB cb, final SchedulerPager scheduledJobPager) {
            if (scheduledJobPager.id != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

        }
    
        /**
         * Sets up the list condition for querying web configurations.
         * Applies search filters based on pager criteria such as name, URLs, and description.
         *
         * @param cb The condition bean for the query
         * @param webConfigPager The pager containing search criteria
         */
        protected void setupListCondition(final WebConfigCB cb, final WebConfigPager webConfigPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

        /**
         * Sets up the search conditions for retrieving file authentication configurations.
         * This method configures the query conditions and ordering for the database query.
         *
         * @param cb the condition bean for building the query
         * @param fileAuthenticationPager the pager containing search criteria
         */
        protected void setupListCondition(final FileAuthenticationCB cb, final FileAuthPager fileAuthenticationPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/JobLogService.java

        }
    
        /**
         * Sets up the query conditions for retrieving job logs based on the pager configuration.
         * Configures filtering and ordering for the database query.
         *
         * @param cb the condition bean for building the query
         * @param jobLogPager the pager containing filter and search criteria
         */
        protected void setupListCondition(final JobLogCB cb, final JobLogPager jobLogPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
Back to top