
org.zalando.putittorest.ClientHttpMessageConverters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of put-it-to-rest Show documentation
Show all versions of put-it-to-rest Show documentation
Spring Boot REST Client Auto Configuration
The newest version!
package org.zalando.putittorest;
import org.springframework.http.converter.HttpMessageConverter;
import java.util.List;
public final class ClientHttpMessageConverters {
private final List> converters;
public ClientHttpMessageConverters(final List> converters) {
this.converters = converters;
}
public List> getConverters() {
return converters;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy