This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Skill x-ms-conversation-id request header (#1269)
- Loading branch information
1 parent
2edbf3c
commit e94ef7b
Showing
3 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
libraries/bot-connector/src/main/java/com/microsoft/bot/connector/ConversationConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
package com.microsoft.bot.connector; | ||
|
||
/** | ||
* Values and constants used for Conversation specific info. | ||
*/ | ||
public final class ConversationConstants { | ||
private ConversationConstants() { | ||
} | ||
|
||
/** | ||
* The name of Http Request Header to add Conversation Id to skills requests. | ||
*/ | ||
public static final String CONVERSATION_ID_HTTP_HEADERNAME = "x-ms-conversation-id"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters