@@ -111,7 +111,7 @@ public class HttpClientSseClientTransport implements McpClientTransport {
111
111
/**
112
112
* Creates a new transport instance with default HTTP client and object mapper.
113
113
* @param baseUri the base URI of the MCP server
114
- * @deprecated Use {@link HttpClientSseClientTransport2 #builder(String)} instead. This
114
+ * @deprecated Use {@link HttpClientSseClientTransport #builder(String)} instead. This
115
115
* constructor will be removed in future versions.
116
116
*/
117
117
@ Deprecated (forRemoval = true )
@@ -125,7 +125,7 @@ public HttpClientSseClientTransport(String baseUri) {
125
125
* @param baseUri the base URI of the MCP server
126
126
* @param objectMapper the object mapper for JSON serialization/deserialization
127
127
* @throws IllegalArgumentException if objectMapper or clientBuilder is null
128
- * @deprecated Use {@link HttpClientSseClientTransport2 #builder(String)} instead. This
128
+ * @deprecated Use {@link HttpClientSseClientTransport #builder(String)} instead. This
129
129
* constructor will be removed in future versions.
130
130
*/
131
131
@ Deprecated (forRemoval = true )
@@ -140,7 +140,7 @@ public HttpClientSseClientTransport(HttpClient.Builder clientBuilder, String bas
140
140
* @param sseEndpoint the SSE endpoint path
141
141
* @param objectMapper the object mapper for JSON serialization/deserialization
142
142
* @throws IllegalArgumentException if objectMapper or clientBuilder is null
143
- * @deprecated Use {@link HttpClientSseClientTransport2 #builder(String)} instead. This
143
+ * @deprecated Use {@link HttpClientSseClientTransport #builder(String)} instead. This
144
144
* constructor will be removed in future versions.
145
145
*/
146
146
@ Deprecated (forRemoval = true )
@@ -158,7 +158,7 @@ public HttpClientSseClientTransport(HttpClient.Builder clientBuilder, String bas
158
158
* @param sseEndpoint the SSE endpoint path
159
159
* @param objectMapper the object mapper for JSON serialization/deserialization
160
160
* @throws IllegalArgumentException if objectMapper, clientBuilder, or headers is null
161
- * @deprecated Use {@link HttpClientSseClientTransport2 #builder(String)} instead. This
161
+ * @deprecated Use {@link HttpClientSseClientTransport #builder(String)} instead. This
162
162
* constructor will be removed in future versions.
163
163
*/
164
164
@ Deprecated (forRemoval = true )
@@ -193,7 +193,7 @@ public HttpClientSseClientTransport(HttpClient.Builder clientBuilder, HttpReques
193
193
}
194
194
195
195
/**
196
- * Creates a new builder for {@link HttpClientSseClientTransport2 }.
196
+ * Creates a new builder for {@link HttpClientSseClientTransport }.
197
197
* @param baseUri the base URI of the MCP server
198
198
* @return a new builder instance
199
199
*/
@@ -202,7 +202,7 @@ public static Builder builder(String baseUri) {
202
202
}
203
203
204
204
/**
205
- * Builder for {@link HttpClientSseClientTransport2 }.
205
+ * Builder for {@link HttpClientSseClientTransport }.
206
206
*/
207
207
public static class Builder {
208
208
@@ -229,7 +229,7 @@ public static class Builder {
229
229
/**
230
230
* Creates a new builder with the specified base URI.
231
231
* @param baseUri the base URI of the MCP server
232
- * @deprecated Use {@link HttpClientSseClientTransport2 #builder(String)} instead.
232
+ * @deprecated Use {@link HttpClientSseClientTransport #builder(String)} instead.
233
233
* This constructor is deprecated and will be removed or made {@code protected} or
234
234
* {@code private} in a future release.
235
235
*/
@@ -317,7 +317,7 @@ public Builder objectMapper(ObjectMapper objectMapper) {
317
317
}
318
318
319
319
/**
320
- * Builds a new {@link HttpClientSseClientTransport2 } instance.
320
+ * Builds a new {@link HttpClientSseClientTransport } instance.
321
321
* @return a new transport instance
322
322
*/
323
323
public HttpClientSseClientTransport build () {
0 commit comments