Skip to content

docs: Fix broken references in Javadoc #346

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public interface McpServerTransportProvider {
* @param method the name of the notification method to be called on the clients
* @param params parameters to be sent with the notification
* @return a Mono that completes when the notification has been broadcast
* @see McpSession#sendNotification(String, Map)
* @see McpSession#sendNotification(String, Object)
*/
Mono<Void> notifyClients(String method, Object params);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public class DefaultMcpUriTemplateManager implements McpUriTemplateManager {

/**
* Constructor for DefaultMcpUriTemplateManager.
* @param uriTemplate The URI template to be used for variable extraction
* @param uriTemplate The URI template to be used for variable extraction should be in
* the format {variableName}
*/
public DefaultMcpUriTemplateManager(String uriTemplate) {
if (uriTemplate == null || uriTemplate.isEmpty()) {
Expand All @@ -41,8 +42,6 @@ public DefaultMcpUriTemplateManager(String uriTemplate) {

/**
* Extract URI variable names from a URI template.
* @param uriTemplate The URI template containing variables in the format
* {variableName}
* @return A list of variable names extracted from the template
* @throws IllegalArgumentException if duplicate variable names are found
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

/**
* Test suite for the {@link McpAsyncServer} that can be used with different
* {@link McpTransportProvider} implementations.
* {@link McpServerTransportProvider} implementations.
*
* @author Christian Tzolov
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

/**
* Test suite for the {@link McpSyncServer} that can be used with different
* {@link McpTransportProvider} implementations.
* {@link McpServerTransportProvider} implementations.
*
* @author Christian Tzolov
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import org.junit.jupiter.api.Timeout;

/**
* Tests for {@link McpAsyncServer} using {@link StdioServerTransport}.
* Tests for {@link McpAsyncServer} using {@link StdioServerTransportProvider}.
*
* @author Christian Tzolov
*/
Expand Down