Class CompositeFlowExecutionKey

java.lang.Object
org.springframework.webflow.execution.FlowExecutionKey
org.springframework.webflow.execution.repository.support.CompositeFlowExecutionKey
All Implemented Interfaces:
Serializable

public class CompositeFlowExecutionKey extends FlowExecutionKey
A flow execution key that consists of two parts:
  1. A executionId, identifying a logical FlowExecution that is running.
  2. A snapshotId, identifying a physical flow execution snapshot that can be restored.
Author:
Keith Donald
See Also:
  • Constructor Details

    • CompositeFlowExecutionKey

      public CompositeFlowExecutionKey(Serializable executionId, Serializable snapshotId)
      Create a new composite flow execution key given the composing parts.
      Parameters:
      executionId - the execution id
      snapshotId - the snapshot id
  • Method Details