Class ConversationParameters

java.lang.Object
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:
  • Constructor Details

    • 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 Details

    • 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