-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCreateSessionRequest.java.html
More file actions
651 lines (515 loc) · 26.9 KB
/
Copy pathCreateSessionRequest.java.html
File metadata and controls
651 lines (515 loc) · 26.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang=""><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>CreateSessionRequest.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">GitHub Copilot SDK :: Java</a> > <a href="index.source.html" class="el_package">com.github.copilot.rpc</a> > <span class="el_source">CreateSessionRequest.java</span></div><h1>CreateSessionRequest.java</h1><pre class="source lang-java linenums">/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
package com.github.copilot.rpc;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Internal request object for creating a new session.
* <p>
* This is a low-level class for JSON-RPC communication. For creating sessions,
* use {@link com.github.copilot.CopilotClient#createSession(SessionConfig)}.
*
* @see com.github.copilot.CopilotClient#createSession(SessionConfig)
* @see SessionConfig
* @since 1.0.0
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
<span class="fc" id="L25">public final class CreateSessionRequest {</span>
@JsonProperty("model")
private String model;
@JsonProperty("sessionId")
private String sessionId;
@JsonProperty("clientName")
private String clientName;
@JsonProperty("reasoningEffort")
private String reasoningEffort;
@JsonProperty("reasoningSummary")
private String reasoningSummary;
@JsonProperty("tools")
private List<ToolDefinition> tools;
@JsonProperty("systemMessage")
private SystemMessageConfig systemMessage;
@JsonProperty("availableTools")
private List<String> availableTools;
@JsonProperty("excludedTools")
private List<String> excludedTools;
@JsonProperty("toolFilterPrecedence")
private String toolFilterPrecedence;
@JsonProperty("provider")
private ProviderConfig provider;
@JsonProperty("enableSessionTelemetry")
private Boolean enableSessionTelemetry;
@JsonProperty("requestPermission")
private Boolean requestPermission;
@JsonProperty("requestUserInput")
private Boolean requestUserInput;
@JsonProperty("hooks")
private Boolean hooks;
@JsonProperty("workingDirectory")
private String workingDirectory;
@JsonProperty("streaming")
private Boolean streaming;
@JsonProperty("includeSubAgentStreamingEvents")
private Boolean includeSubAgentStreamingEvents;
@JsonProperty("mcpServers")
private Map<String, McpServerConfig> mcpServers;
@JsonProperty("mcpOAuthTokenStorage")
private String mcpOAuthTokenStorage;
@JsonProperty("envValueMode")
private String envValueMode;
@JsonProperty("customAgents")
private List<CustomAgentConfig> customAgents;
@JsonProperty("defaultAgent")
private DefaultAgentConfig defaultAgent;
@JsonProperty("agent")
private String agent;
@JsonProperty("infiniteSessions")
private InfiniteSessionConfig infiniteSessions;
@JsonProperty("skillDirectories")
private List<String> skillDirectories;
@JsonProperty("instructionDirectories")
private List<String> instructionDirectories;
@JsonProperty("pluginDirectories")
private List<String> pluginDirectories;
@JsonProperty("largeOutput")
private LargeToolOutputConfig largeOutput;
@JsonProperty("disabledSkills")
private List<String> disabledSkills;
@JsonProperty("configDir")
private String configDirectory;
@JsonProperty("enableConfigDiscovery")
private Boolean enableConfigDiscovery;
@JsonProperty("commands")
private List<CommandWireDefinition> commands;
@JsonProperty("requestElicitation")
private Boolean requestElicitation;
@JsonProperty("requestMcpApps")
private Boolean requestMcpApps;
@JsonProperty("requestExitPlanMode")
private Boolean requestExitPlanMode;
@JsonProperty("requestAutoModeSwitch")
private Boolean requestAutoModeSwitch;
@JsonProperty("modelCapabilities")
private ModelCapabilitiesOverride modelCapabilities;
@JsonProperty("gitHubToken")
private String gitHubToken;
@JsonProperty("remoteSession")
private String remoteSession;
@JsonProperty("cloud")
private CloudSessionOptions cloud;
/** Gets the model name. @return the model */
public String getModel() {
<span class="fc" id="L152"> return model;</span>
}
/** Sets the model name. @param model the model */
public void setModel(String model) {
<span class="fc" id="L157"> this.model = model;</span>
<span class="fc" id="L158"> }</span>
/** Gets the session ID. @return the session ID */
public String getSessionId() {
<span class="fc" id="L162"> return sessionId;</span>
}
/** Sets the session ID. @param sessionId the session ID */
public void setSessionId(String sessionId) {
<span class="fc" id="L167"> this.sessionId = sessionId;</span>
<span class="fc" id="L168"> }</span>
/** Gets the client name. @return the client name */
public String getClientName() {
<span class="fc" id="L172"> return clientName;</span>
}
/** Sets the client name. @param clientName the client name */
public void setClientName(String clientName) {
<span class="fc" id="L177"> this.clientName = clientName;</span>
<span class="fc" id="L178"> }</span>
/** Gets the reasoning effort. @return the reasoning effort level */
public String getReasoningEffort() {
<span class="fc" id="L182"> return reasoningEffort;</span>
}
/**
* Sets the reasoning effort. @param reasoningEffort the reasoning effort level
*/
public void setReasoningEffort(String reasoningEffort) {
<span class="fc" id="L189"> this.reasoningEffort = reasoningEffort;</span>
<span class="fc" id="L190"> }</span>
/** Gets the reasoning summary mode. @return the reasoning summary mode */
public String getReasoningSummary() {
<span class="fc" id="L194"> return reasoningSummary;</span>
}
/**
* Sets the reasoning summary mode. @param reasoningSummary the reasoning
* summary mode
*/
public void setReasoningSummary(String reasoningSummary) {
<span class="fc" id="L202"> this.reasoningSummary = reasoningSummary;</span>
<span class="fc" id="L203"> }</span>
/** Gets the tools. @return the tool definitions */
public List<ToolDefinition> getTools() {
<span class="fc bfc" id="L207" title="All 2 branches covered."> return tools == null ? null : Collections.unmodifiableList(tools);</span>
}
/** Sets the tools. @param tools the tool definitions */
public void setTools(List<ToolDefinition> tools) {
<span class="fc" id="L212"> this.tools = tools;</span>
<span class="fc" id="L213"> }</span>
/** Gets the system message config. @return the config */
public SystemMessageConfig getSystemMessage() {
<span class="fc" id="L217"> return systemMessage;</span>
}
/** Sets the system message config. @param systemMessage the config */
public void setSystemMessage(SystemMessageConfig systemMessage) {
<span class="fc" id="L222"> this.systemMessage = systemMessage;</span>
<span class="fc" id="L223"> }</span>
/** Gets available tools. @return the tool names */
public List<String> getAvailableTools() {
<span class="fc bfc" id="L227" title="All 2 branches covered."> return availableTools == null ? null : Collections.unmodifiableList(availableTools);</span>
}
/** Sets available tools. @param availableTools the tool names */
public void setAvailableTools(List<String> availableTools) {
<span class="fc" id="L232"> this.availableTools = availableTools;</span>
<span class="fc" id="L233"> }</span>
/** Gets excluded tools. @return the tool names */
public List<String> getExcludedTools() {
<span class="fc bfc" id="L237" title="All 2 branches covered."> return excludedTools == null ? null : Collections.unmodifiableList(excludedTools);</span>
}
/** Sets excluded tools. @param excludedTools the tool names */
public void setExcludedTools(List<String> excludedTools) {
<span class="fc" id="L242"> this.excludedTools = excludedTools;</span>
<span class="fc" id="L243"> }</span>
/** Gets the tool filter precedence. @return the precedence value */
public String getToolFilterPrecedence() {
<span class="fc" id="L247"> return toolFilterPrecedence;</span>
}
/**
* Sets the tool filter precedence. @param toolFilterPrecedence the precedence
* ("excluded" or null)
*/
public void setToolFilterPrecedence(String toolFilterPrecedence) {
<span class="nc" id="L255"> this.toolFilterPrecedence = toolFilterPrecedence;</span>
<span class="nc" id="L256"> }</span>
/** Gets the provider config. @return the provider */
public ProviderConfig getProvider() {
<span class="fc" id="L260"> return provider;</span>
}
/** Sets the provider config. @param provider the provider */
public void setProvider(ProviderConfig provider) {
<span class="fc" id="L265"> this.provider = provider;</span>
<span class="fc" id="L266"> }</span>
/** Gets enable session telemetry flag. @return the flag */
public Boolean getEnableSessionTelemetry() {
<span class="fc" id="L270"> return enableSessionTelemetry;</span>
}
/**
* Sets enable session telemetry flag. @param enableSessionTelemetry the flag
*/
public void setEnableSessionTelemetry(boolean enableSessionTelemetry) {
<span class="fc" id="L277"> this.enableSessionTelemetry = enableSessionTelemetry;</span>
<span class="fc" id="L278"> }</span>
/**
* Clears the enableSessionTelemetry setting, reverting to the default behavior.
*/
public void clearEnableSessionTelemetry() {
<span class="nc" id="L284"> this.enableSessionTelemetry = null;</span>
<span class="nc" id="L285"> }</span>
/** Gets request permission flag. @return the flag */
public Boolean getRequestPermission() {
<span class="fc" id="L289"> return requestPermission;</span>
}
/** Sets request permission flag. @param requestPermission the flag */
public void setRequestPermission(boolean requestPermission) {
<span class="fc" id="L294"> this.requestPermission = requestPermission;</span>
<span class="fc" id="L295"> }</span>
/**
* Clears the requestPermission setting, reverting to the default behavior.
*/
public void clearRequestPermission() {
<span class="nc" id="L301"> this.requestPermission = null;</span>
<span class="nc" id="L302"> }</span>
/** Gets request user input flag. @return the flag */
public Boolean getRequestUserInput() {
<span class="fc" id="L306"> return requestUserInput;</span>
}
/** Sets request user input flag. @param requestUserInput the flag */
public void setRequestUserInput(boolean requestUserInput) {
<span class="fc" id="L311"> this.requestUserInput = requestUserInput;</span>
<span class="fc" id="L312"> }</span>
/**
* Clears the requestUserInput setting, reverting to the default behavior.
*/
public void clearRequestUserInput() {
<span class="nc" id="L318"> this.requestUserInput = null;</span>
<span class="nc" id="L319"> }</span>
/** Gets hooks flag. @return the flag */
public Boolean getHooks() {
<span class="fc" id="L323"> return hooks;</span>
}
/** Sets hooks flag. @param hooks the flag */
public void setHooks(boolean hooks) {
<span class="fc" id="L328"> this.hooks = hooks;</span>
<span class="fc" id="L329"> }</span>
/**
* Clears the hooks setting, reverting to the default behavior.
*/
public void clearHooks() {
<span class="nc" id="L335"> this.hooks = null;</span>
<span class="nc" id="L336"> }</span>
/** Gets working directory. @return the working directory */
public String getWorkingDirectory() {
<span class="fc" id="L340"> return workingDirectory;</span>
}
/** Sets working directory. @param workingDirectory the working directory */
public void setWorkingDirectory(String workingDirectory) {
<span class="fc" id="L345"> this.workingDirectory = workingDirectory;</span>
<span class="fc" id="L346"> }</span>
/** Gets streaming flag. @return the flag */
public Boolean getStreaming() {
<span class="fc" id="L350"> return streaming;</span>
}
/** Sets streaming flag. @param streaming the flag */
public void setStreaming(boolean streaming) {
<span class="fc" id="L355"> this.streaming = streaming;</span>
<span class="fc" id="L356"> }</span>
/**
* Clears the streaming setting, reverting to the default behavior.
*/
public void clearStreaming() {
<span class="nc" id="L362"> this.streaming = null;</span>
<span class="nc" id="L363"> }</span>
/** Gets MCP servers. @return the servers map */
public Map<String, McpServerConfig> getMcpServers() {
<span class="fc bfc" id="L367" title="All 2 branches covered."> return mcpServers == null ? null : Collections.unmodifiableMap(mcpServers);</span>
}
/** Sets MCP servers. @param mcpServers the servers map */
public void setMcpServers(Map<String, McpServerConfig> mcpServers) {
<span class="fc" id="L372"> this.mcpServers = mcpServers;</span>
<span class="fc" id="L373"> }</span>
/** Gets MCP OAuth token storage mode. @return the storage mode */
public String getMcpOAuthTokenStorage() {
<span class="fc" id="L377"> return mcpOAuthTokenStorage;</span>
}
/**
* Sets MCP OAuth token storage mode. @param mcpOAuthTokenStorage the storage
* mode
*/
public void setMcpOAuthTokenStorage(String mcpOAuthTokenStorage) {
<span class="fc" id="L385"> this.mcpOAuthTokenStorage = mcpOAuthTokenStorage;</span>
<span class="fc" id="L386"> }</span>
/** Gets MCP environment variable value mode. @return the mode */
public String getEnvValueMode() {
<span class="fc" id="L390"> return envValueMode;</span>
}
/** Sets MCP environment variable value mode. @param envValueMode the mode */
public void setEnvValueMode(String envValueMode) {
<span class="fc" id="L395"> this.envValueMode = envValueMode;</span>
<span class="fc" id="L396"> }</span>
/** Gets custom agents. @return the agents */
public List<CustomAgentConfig> getCustomAgents() {
<span class="fc bfc" id="L400" title="All 2 branches covered."> return customAgents == null ? null : Collections.unmodifiableList(customAgents);</span>
}
/** Sets custom agents. @param customAgents the agents */
public void setCustomAgents(List<CustomAgentConfig> customAgents) {
<span class="fc" id="L405"> this.customAgents = customAgents;</span>
<span class="fc" id="L406"> }</span>
/** Gets the default agent config. @return the default agent config */
public DefaultAgentConfig getDefaultAgent() {
<span class="fc" id="L410"> return defaultAgent;</span>
}
/**
* Sets the default agent config. @param defaultAgent the default agent config
*/
public void setDefaultAgent(DefaultAgentConfig defaultAgent) {
<span class="fc" id="L417"> this.defaultAgent = defaultAgent;</span>
<span class="fc" id="L418"> }</span>
/** Gets the pre-selected agent name. @return the agent name */
public String getAgent() {
<span class="fc" id="L422"> return agent;</span>
}
/** Sets the pre-selected agent name. @param agent the agent name */
public void setAgent(String agent) {
<span class="fc" id="L427"> this.agent = agent;</span>
<span class="fc" id="L428"> }</span>
/** Gets infinite sessions config. @return the config */
public InfiniteSessionConfig getInfiniteSessions() {
<span class="fc" id="L432"> return infiniteSessions;</span>
}
/** Sets infinite sessions config. @param infiniteSessions the config */
public void setInfiniteSessions(InfiniteSessionConfig infiniteSessions) {
<span class="fc" id="L437"> this.infiniteSessions = infiniteSessions;</span>
<span class="fc" id="L438"> }</span>
/** Gets skill directories. @return the skill directories */
public List<String> getSkillDirectories() {
<span class="fc bfc" id="L442" title="All 2 branches covered."> return skillDirectories == null ? null : Collections.unmodifiableList(skillDirectories);</span>
}
/** Sets skill directories. @param skillDirectories the directories */
public void setSkillDirectories(List<String> skillDirectories) {
<span class="fc" id="L447"> this.skillDirectories = skillDirectories;</span>
<span class="fc" id="L448"> }</span>
/** Gets instruction directories. @return the instruction directories */
public List<String> getInstructionDirectories() {
<span class="fc bfc" id="L452" title="All 2 branches covered."> return instructionDirectories == null ? null : Collections.unmodifiableList(instructionDirectories);</span>
}
/**
* Sets instruction directories. @param instructionDirectories the directories
*/
public void setInstructionDirectories(List<String> instructionDirectories) {
<span class="fc" id="L459"> this.instructionDirectories = instructionDirectories;</span>
<span class="fc" id="L460"> }</span>
/** Gets plugin directories. @return the plugin directories */
public List<String> getPluginDirectories() {
<span class="fc bfc" id="L464" title="All 2 branches covered."> return pluginDirectories == null ? null : Collections.unmodifiableList(pluginDirectories);</span>
}
/** Sets plugin directories. @param pluginDirectories the directories */
public void setPluginDirectories(List<String> pluginDirectories) {
<span class="fc" id="L469"> this.pluginDirectories = pluginDirectories;</span>
<span class="fc" id="L470"> }</span>
/** Gets large output config. @return the large output config */
public LargeToolOutputConfig getLargeOutput() {
<span class="fc" id="L474"> return largeOutput;</span>
}
/** Sets large output config. @param largeOutput the large output config */
public void setLargeOutput(LargeToolOutputConfig largeOutput) {
<span class="fc" id="L479"> this.largeOutput = largeOutput;</span>
<span class="fc" id="L480"> }</span>
/** Gets disabled skills. @return the disabled skill names */
public List<String> getDisabledSkills() {
<span class="fc bfc" id="L484" title="All 2 branches covered."> return disabledSkills == null ? null : Collections.unmodifiableList(disabledSkills);</span>
}
/** Sets disabled skills. @param disabledSkills the skill names to disable */
public void setDisabledSkills(List<String> disabledSkills) {
<span class="fc" id="L489"> this.disabledSkills = disabledSkills;</span>
<span class="fc" id="L490"> }</span>
/** Gets config directory. @return the config directory path */
public String getConfigDirectory() {
<span class="fc" id="L494"> return configDirectory;</span>
}
/** Sets config directory. @param configDirectory the config directory path */
public void setConfigDirectory(String configDirectory) {
<span class="fc" id="L499"> this.configDirectory = configDirectory;</span>
<span class="fc" id="L500"> }</span>
/** Gets enable config discovery flag. @return the flag */
public Boolean getEnableConfigDiscovery() {
<span class="fc" id="L504"> return enableConfigDiscovery;</span>
}
/** Sets enable config discovery flag. @param enableConfigDiscovery the flag */
public void setEnableConfigDiscovery(boolean enableConfigDiscovery) {
<span class="nc" id="L509"> this.enableConfigDiscovery = enableConfigDiscovery;</span>
<span class="nc" id="L510"> }</span>
/**
* Clears the enableConfigDiscovery setting, reverting to the default behavior.
*/
public void clearEnableConfigDiscovery() {
<span class="nc" id="L516"> this.enableConfigDiscovery = null;</span>
<span class="nc" id="L517"> }</span>
/** Gets include sub-agent streaming events flag. @return the flag */
public Boolean getIncludeSubAgentStreamingEvents() {
<span class="fc" id="L521"> return includeSubAgentStreamingEvents;</span>
}
/**
* Sets include sub-agent streaming events flag. @param
* includeSubAgentStreamingEvents the flag
*/
public void setIncludeSubAgentStreamingEvents(boolean includeSubAgentStreamingEvents) {
<span class="nc" id="L529"> this.includeSubAgentStreamingEvents = includeSubAgentStreamingEvents;</span>
<span class="nc" id="L530"> }</span>
/**
* Clears the includeSubAgentStreamingEvents setting, reverting to the default
* behavior.
*/
public void clearIncludeSubAgentStreamingEvents() {
<span class="nc" id="L537"> this.includeSubAgentStreamingEvents = null;</span>
<span class="nc" id="L538"> }</span>
/** Gets the commands wire definitions. @return the commands */
public List<CommandWireDefinition> getCommands() {
<span class="fc bfc" id="L542" title="All 2 branches covered."> return commands == null ? null : Collections.unmodifiableList(commands);</span>
}
/** Sets the commands wire definitions. @param commands the commands */
public void setCommands(List<CommandWireDefinition> commands) {
<span class="fc" id="L547"> this.commands = commands;</span>
<span class="fc" id="L548"> }</span>
/** Gets the requestElicitation flag. @return the flag */
public Boolean getRequestElicitation() {
<span class="fc" id="L552"> return requestElicitation;</span>
}
/** Sets the requestElicitation flag. @param requestElicitation the flag */
public void setRequestElicitation(boolean requestElicitation) {
<span class="fc" id="L557"> this.requestElicitation = requestElicitation;</span>
<span class="fc" id="L558"> }</span>
/**
* Clears the requestElicitation setting, reverting to the default behavior.
*/
public void clearRequestElicitation() {
<span class="nc" id="L564"> this.requestElicitation = null;</span>
<span class="nc" id="L565"> }</span>
/** Gets the requestMcpApps flag. @return the flag */
public Boolean getRequestMcpApps() {
<span class="fc" id="L569"> return requestMcpApps;</span>
}
/** Sets the requestMcpApps flag. @param requestMcpApps the flag */
public void setRequestMcpApps(boolean requestMcpApps) {
<span class="nc" id="L574"> this.requestMcpApps = requestMcpApps;</span>
<span class="nc" id="L575"> }</span>
/** Clears the requestMcpApps setting, reverting to the default behavior. */
public void clearRequestMcpApps() {
<span class="nc" id="L579"> this.requestMcpApps = null;</span>
<span class="nc" id="L580"> }</span>
/** Gets the requestExitPlanMode flag. @return the flag */
public Boolean getRequestExitPlanMode() {
<span class="fc" id="L584"> return requestExitPlanMode;</span>
}
/** Sets the requestExitPlanMode flag. @param requestExitPlanMode the flag */
public void setRequestExitPlanMode(Boolean requestExitPlanMode) {
<span class="fc" id="L589"> this.requestExitPlanMode = requestExitPlanMode;</span>
<span class="fc" id="L590"> }</span>
/** Gets the requestAutoModeSwitch flag. @return the flag */
public Boolean getRequestAutoModeSwitch() {
<span class="fc" id="L594"> return requestAutoModeSwitch;</span>
}
/**
* Sets the requestAutoModeSwitch flag. @param requestAutoModeSwitch the flag
*/
public void setRequestAutoModeSwitch(Boolean requestAutoModeSwitch) {
<span class="fc" id="L601"> this.requestAutoModeSwitch = requestAutoModeSwitch;</span>
<span class="fc" id="L602"> }</span>
/** Gets the model capabilities override. @return the override */
public ModelCapabilitiesOverride getModelCapabilities() {
<span class="fc" id="L606"> return modelCapabilities;</span>
}
/**
* Sets the model capabilities override. @param modelCapabilities the override
*/
public void setModelCapabilities(ModelCapabilitiesOverride modelCapabilities) {
<span class="fc" id="L613"> this.modelCapabilities = modelCapabilities;</span>
<span class="fc" id="L614"> }</span>
/** Gets the GitHub token for per-session authentication. @return the token */
public String getGitHubToken() {
<span class="fc" id="L618"> return gitHubToken;</span>
}
/**
* Sets the GitHub token for per-session authentication. @param gitHubToken the
* token
*/
public void setGitHubToken(String gitHubToken) {
<span class="fc" id="L626"> this.gitHubToken = gitHubToken;</span>
<span class="fc" id="L627"> }</span>
/** Gets the remote session mode. @return the remote session mode */
public String getRemoteSession() {
<span class="fc" id="L631"> return remoteSession;</span>
}
/**
* Sets the remote session mode. @param remoteSession the remote session mode
*/
public void setRemoteSession(String remoteSession) {
<span class="fc" id="L638"> this.remoteSession = remoteSession;</span>
<span class="fc" id="L639"> }</span>
/** Gets the cloud session options. @return the cloud session options */
public CloudSessionOptions getCloud() {
<span class="fc" id="L643"> return cloud;</span>
}
/** Sets the cloud session options. @param cloud the cloud session options */
public void setCloud(CloudSessionOptions cloud) {
<span class="fc" id="L648"> this.cloud = cloud;</span>
<span class="fc" id="L649"> }</span>
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.14.202510111229</span></div></body></html>