# interceptable-http-client **Repository Path**: mirrors_raphw/interceptable-http-client ## Basic Information - **Project Name**: interceptable-http-client - **Description**: A wrapper API for creating interceptable Java HttpClients - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-01-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Interception extension for Java's HttpClient -------------------------------------------- This module adds a common feature of HTTP client implementations to Java 11's `java.net.http.HttpClient`: - Adding request decorators, to for example add or modify request headers. - Adding request interception, to for example collect request metrics. The extension is straight-forward to use by simply replacing `HttpClient.builder()` by `InterceptableHttpClient.builder()`. The extended builder API is then capable of registering decorators and interceptors by the two additional build steps `addDecorator` and `addInterceptor`.