Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PathMapping (0.59 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: Sat Dec 20 09:19:18 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

            }
            return OptionalEntity.empty();
        }
    
        /**
         * Creates a PathMapping entity from the provided form data.
         *
         * @param form the create form containing path mapping data
         * @return optional PathMapping entity populated with form data
         */
        public static OptionalEntity<PathMapping> getPathMapping(final CreateForm form) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    						
    					<c:if test="${fe:permission('admin-pathmap-view')}">
    					<li class="nav-item">
    						<a href="${fe:url('/admin/pathmap/')}" class="nav-link <c:if test="${param.menuType=='pathMapping'}">active</c:if>" <c:if test="${param.menuType=='pathMapping'}">aria-current="page"</c:if>>
    							<i class='fa fa-genderless nav-icon' aria-hidden="true"></i>
    							<p><la:message key="labels.menu_path_mapping" /></p>
    						</a></li></c:if>
    						
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 13 05:54:52 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            parseProjectProperties(ResourceUtil.getProjectPropertiesFile());
    
            updateConfigListenerMap.put("Label", () -> Integer.toString(ComponentUtil.getLabelTypeHelper().load()));
            updateConfigListenerMap.put("PathMapping", () -> Integer.toString(ComponentUtil.getPathMappingHelper().load()));
            updateConfigListenerMap.put("RelatedContent", () -> Integer.toString(ComponentUtil.getRelatedContentHelper().load()));
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top