mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
|
From 7dcd6e3e77ee83a18170832951b483718b7543e3 Mon Sep 17 00:00:00 2001
|
||
|
From: Alex Bennett <alex.eugene.bennett@gmail.com>
|
||
|
Date: Thu, 11 Jul 2013 15:31:32 -0500
|
||
|
Subject: [PATCH] Added getAllSessionData() to the Conversation API.
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/org/bukkit/conversations/ConversationContext.java b/src/main/java/org/bukkit/conversations/ConversationContext.java
|
||
|
index 4ff9858..22aa1a9 100644
|
||
|
--- a/src/main/java/org/bukkit/conversations/ConversationContext.java
|
||
|
+++ b/src/main/java/org/bukkit/conversations/ConversationContext.java
|
||
|
@@ -42,6 +42,14 @@ public class ConversationContext {
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
+ * Gets the entire sessionData map.
|
||
|
+ * @return The full sessionData map.
|
||
|
+ */
|
||
|
+ public Map<Object, Object> getAllSessionData() {
|
||
|
+ return sessionData;
|
||
|
+ }
|
||
|
+
|
||
|
+ /**
|
||
|
* Gets session data shared between all {@link Prompt} invocations. Use this as a way
|
||
|
* to pass data through each Prompt as the conversation develops.
|
||
|
* @param key The session data key.
|
||
|
--
|
||
|
1.8.1.2
|
||
|
|