Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getProtocolHelper (1.1 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            return getComponent(RANK_FUSION_PROCESSOR);
        }
    
        /**
         * Gets the protocol helper component.
         * @return The protocol helper.
         */
        public static ProtocolHelper getProtocolHelper() {
            return getComponent(PROTOCOL_HELPER);
        }
    
        /**
         * Gets a component by its class type.
         * @param <T> The type of the component.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
Back to top