From 6b2846cff25589fe48da5378a899a492e8f7af4b Mon Sep 17 00:00:00 2001 From: Micha Kiener Date: Tue, 5 Jan 2010 14:36:35 +0000 Subject: [PATCH] SPR-6423, conversation object --- .../java/org/springframework/conversation/Conversation.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/org.springframework.context/src/main/java/org/springframework/conversation/Conversation.java b/org.springframework.context/src/main/java/org/springframework/conversation/Conversation.java index c0da3bae4a..34e8a6f354 100644 --- a/org.springframework.context/src/main/java/org/springframework/conversation/Conversation.java +++ b/org.springframework.context/src/main/java/org/springframework/conversation/Conversation.java @@ -104,6 +104,12 @@ public interface Conversation { */ Map getAttributeMap(); + /** + * @see org.springframework.beans.factory.config.Scope#registerDestructionCallback(String, + * Runnable) + */ + void registerDestructionCallback(String name, Runnable callback); + /** * Returns the id of this conversation which is its identifier to be used * within forms, redirections or anywhere else to define the current -- GitLab