org.zalando.riptide.IO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riptide-core Show documentation
Show all versions of riptide-core Show documentation
Client side response routing
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