goldenChat base source add

This commit is contained in:
aidev
2026-05-23 15:11:48 +09:00
commit a4ea7762b5
2081 changed files with 1155760 additions and 0 deletions
@@ -0,0 +1,32 @@
/*
* SPDX-License-Identifier: MIT
*/
package ta4jexamples.datasources.http;
import java.io.IOException;
import java.net.http.HttpRequest;
/**
* Wrapper around {@link java.net.http.HttpClient} to enable easier testing via
* mocking.
* <p>
* This wrapper provides a simple interface for HTTP operations that can be
* easily mocked in unit tests, avoiding the need to mock the final
* {@link java.net.http.HttpClient} class directly.
*/
public interface HttpClientWrapper {
/**
* Sends the given request using this client, blocking if necessary to get the
* response.
*
* @param <T> the response body type
* @param request the request
* @param handler the response body handler
* @return the response wrapper
* @throws IOException if an I/O error occurs when sending or receiving
* @throws InterruptedException if the operation is interrupted
*/
<T> HttpResponseWrapper<T> send(HttpRequest request, java.net.http.HttpResponse.BodyHandler<T> handler)
throws IOException, InterruptedException;
}