Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getParameterMap (0.2 sec)

  1. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

            final String contentType = request.getHeader("Content-Type");
            if (StringUtil.isNotEmpty(contentType)) {
                curlRequest.header("Content-Type", contentType);
            }
    
            request.getParameterMap().entrySet().stream().forEach(entry -> {
                if (entry.getValue().length > 1) {
                    curlRequest.param(entry.getKey(), String.join(",", entry.getValue()));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         * Any change to this map is NOT reflected on list and other way around!
         */
        public Map<String, Parameter> getParameterMap() {
            LinkedHashMap<String, Parameter> parameterMap = new LinkedHashMap<>();
    
            for (Parameter pd : parameters) {
                parameterMap.put(pd.getName(), pd);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top