All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zalando.riptide.IO Maven / Gradle / Ivy

The newest version!
package org.zalando.riptide;

import org.springframework.util.MultiValueMap;

import java.util.List;
import java.util.Map;

import static org.springframework.util.CollectionUtils.toMultiValueMap;

interface IO extends RequestExecution {

    default void copyTo(
            final Map> source,
            final MultiValueMap target) {
        target.addAll(toMultiValueMap(source));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy