Spring Web Flow

org.springframework.webflow.execution
Class FlowExecutionKey

java.lang.Object
  extended by org.springframework.webflow.execution.FlowExecutionKey
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
CompositeFlowExecutionKey, GeneratedFlowExecutionKey, MockFlowExecutionKey

public abstract class FlowExecutionKey
extends java.lang.Object
implements java.io.Serializable

A key that uniquely identifies a flow execution in a managed FlowExecutionRepository. Serves as a flow execution's persistent identity.

This class is abstract. The repository subsystem encapsulates the structure of concrete key implementations.

Author:
Keith Donald
See Also:
Serialized Form

Constructor Summary
FlowExecutionKey()
           
 
Method Summary
abstract  boolean equals(java.lang.Object o)
           
abstract  int hashCode()
           
abstract  java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FlowExecutionKey

public FlowExecutionKey()
Method Detail

equals

public abstract boolean equals(java.lang.Object o)
Overrides:
equals in class java.lang.Object

hashCode

public abstract int hashCode()
Overrides:
hashCode in class java.lang.Object

toString

public abstract java.lang.String toString()
Overrides:
toString in class java.lang.Object

Spring Web Flow