Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getProtocolHelper (0.12 sec)

  1. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

        @Override
        public void initialize(final UriType uriType) {
            protocols = switch (uriType.protocolType()) {
            case WEB -> ComponentUtil.getProtocolHelper().getWebProtocols();
            case FILE -> ComponentUtil.getProtocolHelper().getFileProtocols();
            default -> throw new ConstraintDefinitionException("protocolType is emtpy.");
            };
        }
    
        @Override
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Mon Jun 17 13:37:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        }
    
        public static RankFusionProcessor getRankFusionProcessor() {
            return getComponent(RANK_FUSION_PROCESSOR);
        }
    
        public static ProtocolHelper getProtocolHelper() {
            return getComponent(PROTOCOL_HELPER);
        }
    
        @SuppressWarnings("unchecked")
        public static <T> T getComponent(final Class<T> clazz) {
            try {
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Mon Jun 17 13:35:51 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            ComponentUtil.getFessConfig();
            final ProtocolHelper protocolHelper = ComponentUtil.getProtocolHelper();
    
            final long startTime = systemHelper.getCurrentTimeAsLong();
    
            final List<String> sessionIdList = new ArrayList<>();
            crawlerList.clear();
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 22.6K bytes
    - Viewed (1)
Back to top