当前位置: 首页>>代码示例>>Java>>正文


Java MultiValueMap.entrySet方法代码示例

本文整理汇总了Java中org.springframework.util.MultiValueMap.entrySet方法的典型用法代码示例。如果您正苦于以下问题:Java MultiValueMap.entrySet方法的具体用法?Java MultiValueMap.entrySet怎么用?Java MultiValueMap.entrySet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.util.MultiValueMap的用法示例。


在下文中一共展示了MultiValueMap.entrySet方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: findConnectionsToUsers

import org.springframework.util.MultiValueMap; //导入方法依赖的package包/类
@Override
public MultiValueMap<String, Connection<?>> findConnectionsToUsers(
                MultiValueMap<String, String> providerUserIdsByProviderId) {
    if (providerUserIdsByProviderId == null || providerUserIdsByProviderId.isEmpty()) {
        throw new IllegalArgumentException("Unable to execute find: no providerUsers provided");
    }

    MultiValueMap<String, Connection<?>> connectionsForUsers = new LinkedMultiValueMap<>();
    for (Map.Entry<String, List<String>> entry : providerUserIdsByProviderId.entrySet()) {
        String providerId = entry.getKey();
        List<String> providerUserIds = entry.getValue();
        List<Connection<?>> connections = providerUserIdsToConnections(providerId, providerUserIds);
        connections.forEach(connection -> connectionsForUsers.add(providerId, connection));
    }
    return connectionsForUsers;
}
 
开发者ID:xm-online,项目名称:xm-uaa,代码行数:17,代码来源:CustomSocialConnectionRepository.java

示例2: getBackends

import org.springframework.util.MultiValueMap; //导入方法依赖的package包/类
private Map<String, String> getBackends(MultiValueMap<String, String> queryParams,
		Pattern pattern) {

	Map<String, String> backends = new HashMap<String, String>();

	for (Entry<String, List<String>> entry : queryParams.entrySet()) {

		Matcher matcher = pattern.matcher(entry.getKey());
		if (!matcher.find()) {
			continue;
		}

		backends.put(matcher.group(1), queryParams.getFirst(entry.getKey()));
	}

	return backends;
}
 
开发者ID:pivotal-cf,项目名称:spring-cloud-vault-connector,代码行数:18,代码来源:VaultServiceInfoCreator.java

示例3: build

import org.springframework.util.MultiValueMap; //导入方法依赖的package包/类
public Record build(Record record,
        MultiValueMap<String, String> multiValueMap, String tenantId)
        throws Exception {
    for (Map.Entry<String, List<String>> entry : multiValueMap.entrySet()) {
        String key = entry.getKey();

        if (key == null) {
            continue;
        }

        List<String> value = entry.getValue();

        if ((value == null) || (value.isEmpty())) {
            continue;
        }

        Prop prop = new Prop();
        prop.setCode(key);
        prop.setType(0);
        prop.setValue(this.getValue(value));
        record.getProps().put(prop.getCode(), prop);
    }

    return record;
}
 
开发者ID:zhaojunfei,项目名称:lemon,代码行数:26,代码来源:RecordBuilder.java

示例4: isMultipart

import org.springframework.util.MultiValueMap; //导入方法依赖的package包/类
private static boolean isMultipart(MultiValueMap<String, ?> map, MediaType contentType) {
    if (contentType != null) {
        return MediaType.MULTIPART_FORM_DATA.equals(contentType);
    }
    for (Entry<String, ?> entry : map.entrySet()) {
        if (entry.getValue() != null && !(entry.getValue() instanceof String)) {
            return true;
        }
    }
    return false;
}
 
开发者ID:xm-online,项目名称:xm-uaa,代码行数:12,代码来源:TwitterEscapingFormHttpMessageConverter.java

示例5: findConnectionsToUsers

import org.springframework.util.MultiValueMap; //导入方法依赖的package包/类
@Override
public MultiValueMap<String, Connection<?>> findConnectionsToUsers(MultiValueMap<String, String> providerUserIdsByProviderId) {
    if (providerUserIdsByProviderId == null || providerUserIdsByProviderId.isEmpty()) {
        throw new IllegalArgumentException("Unable to execute find: no providerUsers provided");
    }

    MultiValueMap<String, Connection<?>> connectionsForUsers = new LinkedMultiValueMap<>();
    for (Map.Entry<String, List<String>> entry : providerUserIdsByProviderId.entrySet()) {
        String providerId = entry.getKey();
        List<String> providerUserIds = entry.getValue();
        List<Connection<?>> connections = providerUserIdsToConnections(providerId, providerUserIds);
        connections.forEach(connection -> connectionsForUsers.add(providerId, connection));
    }
    return connectionsForUsers;
}
 
开发者ID:Microsoft,项目名称:MTC_Labrat,代码行数:16,代码来源:CustomSocialConnectionRepository.java

示例6: isMultipart

import org.springframework.util.MultiValueMap; //导入方法依赖的package包/类
private boolean isMultipart(MultiValueMap<String, ?> map, MediaType contentType) {
    if (contentType != null) {
        return MediaType.MULTIPART_FORM_DATA.includes(contentType)
            || mixed.includes(contentType)
            || related.includes(contentType);
    }
    for (Map.Entry<String, ?> entiry : map.entrySet()) {
        for (Object value : map.get(entiry.getKey())) {
            if (value != null && !(value instanceof String)) {
                return true;
            }
        }
    }
    return false;
}
 
开发者ID:xm-online,项目名称:xm-ms-entity,代码行数:16,代码来源:MultipartMixedConverter.java

示例7: writeParts

import org.springframework.util.MultiValueMap; //导入方法依赖的package包/类
private void writeParts(OutputStream os, MultiValueMap<String, Object> parts, byte[] boundary) throws IOException {
    for (Map.Entry<String, List<Object>> entry : parts.entrySet()) {
        String name = entry.getKey();
        for (Object part : entry.getValue()) {
            if (part != null) {
                writeBoundary(os, boundary);
                writePart(name, getHttpEntity(part), os);
                writeNewLine(os);
            }
        }
    }
}
 
开发者ID:xm-online,项目名称:xm-ms-entity,代码行数:13,代码来源:MultipartMixedConverter.java

示例8: writeParts

import org.springframework.util.MultiValueMap; //导入方法依赖的package包/类
private void writeParts(OutputStream os, MultiValueMap<String, Object> parts, byte[] boundary) throws IOException {
	for (Map.Entry<String, List<Object>> entry : parts.entrySet()) {
		String name = entry.getKey();
		for (Object part : entry.getValue()) {
			if (part != null) {
				writeBoundary(boundary, os);
				HttpEntity<?> entity = getEntity(part);
				writePart(name, entity, os);
				writeNewLine(os);
			}
		}
	}
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:14,代码来源:FormHttpMessageConverter.java


注:本文中的org.springframework.util.MultiValueMap.entrySet方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。