org.springframework.webflow.conversation
Class ConversationParameters

java.lang.Object
  extended by org.springframework.webflow.conversation.ConversationParameters
All Implemented Interfaces:
Serializable

public class ConversationParameters
extends Object
implements Serializable

Simple parameter object for clumping together input needed to begin a new conversation.

Author:
Keith Donald
See Also:
Serialized Form

Constructor Summary
ConversationParameters(String name, String caption, String description)
          Creates new conversation input parameters.
 
Method Summary
 String getCaption()
          Returns the short description.
 String getDescription()
          Returns the long description.
 String getName()
          Returns the name of the conversation.
 String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConversationParameters

public ConversationParameters(String name,
                              String caption,
                              String description)
Creates new conversation input parameters.

Parameters:
name - the name of the conversation
caption - a short description
description - a long description
Method Detail

getName

public String getName()
Returns the name of the conversation.

Returns:
the conversation name

getCaption

public String getCaption()
Returns the short description.

Returns:
the conversation caption

getDescription

public String getDescription()
Returns the long description.

Returns:
the description.

toString

public String toString()
Overrides:
toString in class Object