40 lines
950 B
Java
40 lines
950 B
Java
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
package ta4jexamples.datasources.http;
|
|
|
|
import java.net.http.HttpResponse;
|
|
|
|
/**
|
|
* Default implementation of {@link HttpResponseWrapper} that delegates to a
|
|
* {@link HttpResponse}.
|
|
*
|
|
* @param <T> the response body type
|
|
*/
|
|
public class DefaultHttpResponseWrapper<T> implements HttpResponseWrapper<T> {
|
|
|
|
private final HttpResponse<T> httpResponse;
|
|
|
|
/**
|
|
* Creates a new wrapper around the specified HttpResponse.
|
|
*
|
|
* @param httpResponse the HttpResponse to wrap
|
|
*/
|
|
public DefaultHttpResponseWrapper(HttpResponse<T> httpResponse) {
|
|
if (httpResponse == null) {
|
|
throw new IllegalArgumentException("HttpResponse cannot be null");
|
|
}
|
|
this.httpResponse = httpResponse;
|
|
}
|
|
|
|
@Override
|
|
public int statusCode() {
|
|
return httpResponse.statusCode();
|
|
}
|
|
|
|
@Override
|
|
public T body() {
|
|
return httpResponse.body();
|
|
}
|
|
}
|