Uses of Interface
org.springframework.webflow.conversation.Conversation

Packages that use Conversation
org.springframework.webflow.conversation The conversation subsystem for beginning and ending conversations that manage the state of user interactions. 
org.springframework.webflow.conversation.impl Conversation manager implementations. 
org.springframework.webflow.execution.repository.support General purpose implementation assistance for flow execution repositories. 
 

Uses of Conversation in org.springframework.webflow.conversation
 

Methods in org.springframework.webflow.conversation that return Conversation
 Conversation ConversationManager.beginConversation(ConversationParameters conversationParameters)
          Begin a new conversation.
 Conversation ConversationManager.getConversation(ConversationId id)
          Get the conversation with the provided id.
 

Uses of Conversation in org.springframework.webflow.conversation.impl
 

Methods in org.springframework.webflow.conversation.impl that return Conversation
 Conversation SessionBindingConversationManager.beginConversation(ConversationParameters conversationParameters)
           
 Conversation SessionBindingConversationManager.getConversation(ConversationId id)
           
 

Uses of Conversation in org.springframework.webflow.execution.repository.support
 

Methods in org.springframework.webflow.execution.repository.support that return Conversation
protected  Conversation AbstractConversationFlowExecutionRepository.getConversation(FlowExecutionKey key)
          Returns the conversation governing the execution of the FlowExecution with the provided key.
 

Methods in org.springframework.webflow.execution.repository.support with parameters of type Conversation
protected  void AbstractConversationFlowExecutionRepository.onBegin(Conversation conversation)
          An "on begin conversation" callback, allowing for insertion of custom logic after a new conversation has begun.
protected  void AbstractConversationFlowExecutionRepository.onEnd(Conversation conversation)
          An "on conversation end" callback, allowing for insertion of custom logic after a conversation has ended (it's end() method has been called).
 



Copyright © 2009 Spring Framework. All Rights Reserved.