Module com.rabbitmq.http.client
Package com.rabbitmq.http.client
Interface HttpConnectionConfigurator
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Deprecated(since="4.0.0", forRemoval=true) @FunctionalInterface public interface HttpConnectionConfigurator
Deprecated, for removal: This API element is subject to removal in a future version.Implementations of this interface can perform post-configuration on theHttpURLConnection
used in theClient
'sRestTemplate
.Note the
SimpleRestTemplateConfigurator
performs essential settings before the configurator.- Since:
- 3.6.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
configure(HttpURLConnection connection)
Deprecated, for removal: This API element is subject to removal in a future version.Configure theHttpURLConnection
-
-
-
Method Detail
-
configure
void configure(HttpURLConnection connection)
Deprecated, for removal: This API element is subject to removal in a future version.Configure theHttpURLConnection
- Parameters:
connection
- the connection created by theSimpleClientHttpRequestFactory
-
-