Class HttpHeaderInterceptor
java.lang.Object
org.springframework.boot.devtools.remote.client.HttpHeaderInterceptor
- All Implemented Interfaces:
org.springframework.http.client.ClientHttpRequestInterceptor
public class HttpHeaderInterceptor
extends Object
implements org.springframework.http.client.ClientHttpRequestInterceptor
ClientHttpRequestInterceptor to populate arbitrary HTTP headers with a value.
For example, it might be used to provide an X-AUTH-TOKEN and value for security
purposes.- Since:
- 1.3.0
-
Constructor Summary
ConstructorsConstructorDescriptionHttpHeaderInterceptor(String name, String value) Creates a newHttpHeaderInterceptorinstance. -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.client.ClientHttpResponseintercept(org.springframework.http.HttpRequest request, byte[] body, org.springframework.http.client.ClientHttpRequestExecution execution)
-
Constructor Details
-
HttpHeaderInterceptor
Creates a newHttpHeaderInterceptorinstance.- Parameters:
name- the header name to populate. Cannot be null or empty.value- the header value to populate. Cannot be null or empty.
-
-
Method Details
-
intercept
public org.springframework.http.client.ClientHttpResponse intercept(org.springframework.http.HttpRequest request, byte[] body, org.springframework.http.client.ClientHttpRequestExecution execution) throws IOException - Specified by:
interceptin interfaceorg.springframework.http.client.ClientHttpRequestInterceptor- Throws:
IOException
-