Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for path_mapping (0.05 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsPathMappingBhv.java

            return createOptionalEntity(doSelectByPK(id, tp), id);
        }
    
        @Override
        protected Class<? extends PathMapping> typeOfSelectedEntity() {
            return PathMapping.class;
        }
    
        @Override
        protected Class<PathMapping> typeOfHandlingEntity() {
            return PathMapping.class;
        }
    
        @Override
        protected Class<PathMappingCB> typeOfHandlingConditionBean() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/PathMappingDbm.java

            setupEpg(_epgMap, et -> ((PathMapping) et).getRegex(), (et, vl) -> ((PathMapping) et).setRegex(DfTypeUtil.toString(vl)), "regex");
            setupEpg(_epgMap, et -> ((PathMapping) et).getReplacement(), (et, vl) -> ((PathMapping) et).setReplacement(DfTypeUtil.toString(vl)),
                    "replacement");
            setupEpg(_epgMap, et -> ((PathMapping) et).getSortOrder(), (et, vl) -> ((PathMapping) et).setSortOrder(DfTypeUtil.toInteger(vl)),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/esfluteMap.dfprop

            }
            ; fess_config.label_type = map:{
                ; package = config
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_config.xml
            }
            ; fess_config.path_mapping = map:{
                ; package = config
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_config.xml
            }
            ; fess_config.related_content = map:{
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsPathMapping.java

        @Override
        public PathMappingDbm asDBMeta() {
            return PathMappingDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "path_mapping";
        }
    
        // ===================================================================================
        //                                                                              Source
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsPathMappingCB.java

        @Override
        public PathMappingDbm asDBMeta() {
            return PathMappingDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "path_mapping";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
            return doGetConditionQuery();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  6. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.label_type/label_type"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.path_mapping/path_mapping"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.related_content/related_content"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsPathMappingCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "path_mapping";
        }
    
        @Override
        public String xgetAliasName() {
            return "path_mapping";
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 72.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

            final List<PathMapping> pathMappingList = new ArrayList<PathMapping>();
    
            final PathMapping pathMapping1 = new PathMapping();
            pathMapping1.setRegex("file:///home/");
            pathMapping1.setReplacement("http://localhost/");
            pathMappingList.add(pathMapping1);
    
            final PathMapping pathMapping2 = new PathMapping();
            pathMapping2.setRegex("http://localhost/");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/exentity/PathMapping.java

    import org.codelibs.fess.helper.PathMappingHelper;
    import org.codelibs.fess.opensearch.config.bsentity.BsPathMapping;
    
    /**
     * @author FreeGen
     */
    public class PathMapping extends BsPathMapping {
    
        private static final Logger logger = LogManager.getLogger(PathMapping.class);
    
        private static final long serialVersionUID = 1L;
    
        protected Pattern userAgentPattern;
    
        protected Pattern regexPattern;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

         */
        public OptionalEntity<PathMapping> getPathMapping(final String id) {
            return pathMappingBhv.selectByPK(id);
        }
    
        /**
         * Stores a path mapping.
         *
         * @param pathMapping the path mapping to store
         */
        public void store(final PathMapping pathMapping) {
    
            pathMappingBhv.insertOrUpdate(pathMapping, op -> {
                op.setRefreshPolicy(Constants.TRUE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top