@@ -276,7 +276,7 @@ static AsyncToolSpecification fromSync(SyncToolSpecification tool) {
276
276
* @param readHandler The function that handles resource read requests. The function's
277
277
* first argument is an {@link McpAsyncServerExchange} upon which the server can
278
278
* interact with the connected client. The second arguments is a
279
- * {@link io.modelcontextprotocol.spec. McpSchema.ReadResourceRequest}.
279
+ * {@link McpSchema.ReadResourceRequest}.
280
280
*/
281
281
public record AsyncResourceSpecification (McpSchema .Resource resource ,
282
282
BiFunction <McpAsyncServerExchange , McpSchema .ReadResourceRequest , Mono <McpSchema .ReadResourceResult >> readHandler ) {
@@ -321,8 +321,7 @@ static AsyncResourceSpecification fromSync(SyncResourceSpecification resource) {
321
321
* @param promptHandler The function that processes prompt requests and returns
322
322
* formatted templates. The function's first argument is an
323
323
* {@link McpAsyncServerExchange} upon which the server can interact with the
324
- * connected client. The second arguments is a
325
- * {@link io.modelcontextprotocol.spec.McpSchema.GetPromptRequest}.
324
+ * connected client. The second arguments is a {@link McpSchema.GetPromptRequest}.
326
325
*/
327
326
public record AsyncPromptSpecification (McpSchema .Prompt prompt ,
328
327
BiFunction <McpAsyncServerExchange , McpSchema .GetPromptRequest , Mono <McpSchema .GetPromptResult >> promptHandler ) {
@@ -353,7 +352,7 @@ static AsyncPromptSpecification fromSync(SyncPromptSpecification prompt) {
353
352
* @param completionHandler The asynchronous function that processes completion
354
353
* requests and returns results. The first argument is an
355
354
* {@link McpAsyncServerExchange} used to interact with the client. The second
356
- * argument is a {@link io.modelcontextprotocol.spec. McpSchema.CompleteRequest}.
355
+ * argument is a {@link McpSchema.CompleteRequest}.
357
356
*/
358
357
public record AsyncCompletionSpecification (McpSchema .CompleteReference referenceKey ,
359
358
BiFunction <McpAsyncServerExchange , McpSchema .CompleteRequest , Mono <McpSchema .CompleteResult >> completionHandler ) {
@@ -442,7 +441,7 @@ public record SyncToolSpecification(McpSchema.Tool tool,
442
441
* @param readHandler The function that handles resource read requests. The function's
443
442
* first argument is an {@link McpSyncServerExchange} upon which the server can
444
443
* interact with the connected client. The second arguments is a
445
- * {@link io.modelcontextprotocol.spec. McpSchema.ReadResourceRequest}.
444
+ * {@link McpSchema.ReadResourceRequest}.
446
445
*/
447
446
public record SyncResourceSpecification (McpSchema .Resource resource ,
448
447
BiFunction <McpSyncServerExchange , McpSchema .ReadResourceRequest , McpSchema .ReadResourceResult > readHandler ) {
@@ -476,8 +475,7 @@ public record SyncResourceSpecification(McpSchema.Resource resource,
476
475
* @param promptHandler The function that processes prompt requests and returns
477
476
* formatted templates. The function's first argument is an
478
477
* {@link McpSyncServerExchange} upon which the server can interact with the connected
479
- * client. The second arguments is a
480
- * {@link io.modelcontextprotocol.spec.McpSchema.GetPromptRequest}.
478
+ * client. The second arguments is a {@link McpSchema.GetPromptRequest}.
481
479
*/
482
480
public record SyncPromptSpecification (McpSchema .Prompt prompt ,
483
481
BiFunction <McpSyncServerExchange , McpSchema .GetPromptRequest , McpSchema .GetPromptResult > promptHandler ) {
@@ -490,7 +488,7 @@ public record SyncPromptSpecification(McpSchema.Prompt prompt,
490
488
* @param completionHandler The synchronous function that processes completion
491
489
* requests and returns results. The first argument is an
492
490
* {@link McpSyncServerExchange} used to interact with the client. The second argument
493
- * is a {@link io.modelcontextprotocol.spec. McpSchema.CompleteRequest}.
491
+ * is a {@link McpSchema.CompleteRequest}.
494
492
*/
495
493
public record SyncCompletionSpecification (McpSchema .CompleteReference referenceKey ,
496
494
BiFunction <McpSyncServerExchange , McpSchema .CompleteRequest , McpSchema .CompleteResult > completionHandler ) {
0 commit comments