Skip to content
Merged
1 change: 1 addition & 0 deletions .github/workflows/java-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,5 @@ jobs:
path: |
java/target/surefire-reports/
java/target/surefire-reports-isolated/
target/failsafe-reports/
Comment thread
edburns marked this conversation as resolved.
Outdated
retention-days: 7
2 changes: 1 addition & 1 deletion java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Java SDK for programmatic control of GitHub Copilot CLI, enabling you to build A

```groovy
implementation 'com.github:copilot-sdk-java:1.0.0-beta-10-java.0'

```

#### Snapshot Builds

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/

package com.github.copilot.rpc;

import com.fasterxml.jackson.annotation.JsonInclude;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -787,8 +787,10 @@ public String getMcpOAuthTokenStorage() {
* <li>{@code "in-memory"} — tokens are stored in memory and discarded when the
* session ends</li>
* </ul>
* If not set, the SDK defaults to {@code "in-memory"} for safe multitenant
* behavior.
* If not set and the client is in
* {@link com.github.copilot.CopilotClientMode#EMPTY EMPTY} mode, the SDK
Comment thread
edburns marked this conversation as resolved.
Outdated
* defaults to {@code "in-memory"} for safe multitenant behavior. In other modes
* this field is left unset.
*
* @param mcpOAuthTokenStorage
* the storage mode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -697,8 +697,10 @@ public String getMcpOAuthTokenStorage() {
* <li>{@code "in-memory"} — tokens are stored in memory and discarded when the
* session ends</li>
* </ul>
* If not set, the SDK defaults to {@code "in-memory"} for safe multitenant
* behavior.
* If not set and the client is in
* {@link com.github.copilot.CopilotClientMode#EMPTY EMPTY} mode, the SDK
* defaults to {@code "in-memory"} for safe multitenant behavior. In other modes
* this field is left unset.
Comment thread
edburns marked this conversation as resolved.
Outdated
*
* @param mcpOAuthTokenStorage
* the storage mode
Expand Down
Loading