File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import org.eclipse.lsp4j.jsonrpc.messages.ResponseMessage
77import org.eclipse.lsp4j.jsonrpc.services.JsonNotification
88import org.eclipse.lsp4j.jsonrpc.services.JsonRequest
99import org.eclipse.lsp4j.services.LanguageServer
10+ import software.aws.toolkits.jetbrains.services.amazonq.lsp.model.aws.GetConfigurationFromServerParams
11+ import software.aws.toolkits.jetbrains.services.amazonq.lsp.model.aws.LspServerConfigurations
1012import software.aws.toolkits.jetbrains.services.amazonq.lsp.model.aws.credentials.UpdateCredentialsPayload
1113import software.aws.toolkits.jetbrains.services.amazonq.lsp.model.aws.dependencies.SyncModuleDependenciesParams
1214import java.util.concurrent.CompletableFuture
@@ -24,4 +26,7 @@ interface AmazonQLanguageServer : LanguageServer {
2426
2527 @JsonNotification(" aws/credentials/token/delete" )
2628 fun deleteTokenCredentials (): CompletableFuture <Unit >
29+
30+ @JsonRequest(" aws/getConfigurationFromServer" )
31+ fun getConfigurationFromServer (params : GetConfigurationFromServerParams ): CompletableFuture <LspServerConfigurations >
2732}
Original file line number Diff line number Diff line change 1+ // Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+ // SPDX-License-Identifier: Apache-2.0
3+
4+ package software.aws.toolkits.jetbrains.services.amazonq.lsp.model.aws
5+
6+ class GetConfigurationFromServerParams (
7+ val section : String
8+ )
Original file line number Diff line number Diff line change 1+ // Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+ // SPDX-License-Identifier: Apache-2.0
3+
4+ package software.aws.toolkits.jetbrains.services.amazonq.lsp.model.aws
5+
6+ class LspServerConfigurations {
7+ }
You can’t perform that action at this time.
0 commit comments