Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PathMappingService (0.14 sec)

  1. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service for path mapping operations.
     */
    public class PathMappingService extends FessAppService {
    
        /**
         * Default constructor.
         */
        public PathMappingService() {
            super();
        }
    
        /** Path mapping behavior. */
        @Resource
        protected PathMappingBhv pathMappingBhv;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            pathMappingService = new PathMappingService() {
                @Override
                public List<org.codelibs.fess.opensearch.config.exentity.PathMapping> getPathMappingList(java.util.Collection<String> ptList) {
                    return new ArrayList<>();
                }
            };
            crawler.pathMappingService = pathMappingService;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java

        //                                                                           =========
    
        /** Service for managing path mapping configurations */
        @Resource
        private PathMappingService pathMappingService;
    
        // GET /api/admin/pathmap
        // PUT /api/admin/pathmap
        /**
         * Returns list of path mapping settings.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

        //                                                                           Attribute
        //                                                                           =========
        @Resource
        private PathMappingService pathMappingService;
        @Resource
        private PathMapPager pathMapPager;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/Crawler.java

        @Resource
        protected DataIndexHelper dataIndexHelper;
    
        /** Injected service for managing path mappings during crawling. */
        @Resource
        protected PathMappingService pathMappingService;
    
        /** Injected service for managing crawling session information. */
        @Resource
        protected CrawlingInfoService crawlingInfoService;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
Back to top