Package com.dynatrace.openkit.api.http
Interface HttpResponseInterceptor
-
- All Known Implementing Classes:
NullHttpResponseInterceptor
public interface HttpResponseInterceptorAn interface allowing to intercept an HTTP response from Dynatrace backends.This interceptor is only applied to HTTP responses coming from Dynatrace backend requests.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidintercept(HttpResponse httpResponse)Intercept the HTTP response from Dynatrace backend.
-
-
-
Method Detail
-
intercept
void intercept(HttpResponse httpResponse)
Intercept the HTTP response from Dynatrace backend.This method allows the implementor to read custom HTTP response headers.
- Parameters:
httpResponse- The HTTP response from Dynatrace backend.
-
-