Uses of Class
org.springframework.webflow.execution.repository.FlowExecutionRepositoryException

Packages that use FlowExecutionRepositoryException
org.springframework.webflow.execution.repository The flow execution repository subsystem for saving, and restoring managed flow executions. 
org.springframework.webflow.execution.repository.continuation Implementation of continuation-based flow execution repositories. 
org.springframework.webflow.execution.repository.support General purpose implementation assistance for flow execution repositories. 
 

Uses of FlowExecutionRepositoryException in org.springframework.webflow.execution.repository
 

Subclasses of FlowExecutionRepositoryException in org.springframework.webflow.execution.repository
 class BadlyFormattedFlowExecutionKeyException
          Thrown when an encoded flow execution key is badly formatted and could not be parsed.
 class FlowExecutionAccessException
          Base class for exceptions that indicate a flow execution could not be accessed within a repository.
 class FlowExecutionRestorationFailureException
          Thrown when the flow execution with the persistent identifier provided could not be restored.
 class NoSuchFlowExecutionException
          Thrown when the flow execution with the persistent identifier provided could not be found.
 class PermissionDeniedFlowExecutionAccessException
          Thrown when access to a flow execution was denied by a repository.
 

Methods in org.springframework.webflow.execution.repository that throw FlowExecutionRepositoryException
 FlowExecutionKey FlowExecutionRepository.generateKey(FlowExecution flowExecution)
          Generate a unique flow execution key to be used as the persistent identifier of the flow execution.
 FlowExecution FlowExecutionRepository.getFlowExecution(FlowExecutionKey key)
          Return the FlowExecution indexed by the provided key.
 FlowExecutionLock FlowExecutionRepository.getLock(FlowExecutionKey key)
          Return the lock for the flow execution, allowing for the lock to be acquired or released.
 FlowExecutionKey FlowExecutionRepository.getNextKey(FlowExecution flowExecution, FlowExecutionKey previousKey)
          Obtain the "next" flow execution key to be used as the flow execution's persistent identity.
 FlowExecutionKey FlowExecutionRepository.parseFlowExecutionKey(java.lang.String encodedKey)
          Parse the string-encoded flow execution key into its object form.
 void FlowExecutionRepository.putFlowExecution(FlowExecutionKey key, FlowExecution flowExecution)
          Place the FlowExecution in this repository under the provided key.
 void FlowExecutionRepository.removeFlowExecution(FlowExecutionKey key)
          Remove the flow execution from the repository.
 

Uses of FlowExecutionRepositoryException in org.springframework.webflow.execution.repository.continuation
 

Subclasses of FlowExecutionRepositoryException in org.springframework.webflow.execution.repository.continuation
 class ContinuationCreationException
          Thrown when a continuation snapshot could not be taken of flow execution state.
 class ContinuationNotFoundException
          Thrown when no flow execution continuation exists within a continuation group with a particular id.
 class ContinuationUnmarshalException
          Thrown when a FlowExecutionContinuation could not be deserialized into a FlowExecution.
 

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

Subclasses of FlowExecutionRepositoryException in org.springframework.webflow.execution.repository.support
 class InvalidContinuationIdException
          Thrown when no flow execution continuation exists with the provided id.
 

Methods in org.springframework.webflow.execution.repository.support that throw FlowExecutionRepositoryException
abstract  FlowExecution AbstractConversationFlowExecutionRepository.getFlowExecution(FlowExecutionKey key)
           
 FlowExecutionLock AbstractConversationFlowExecutionRepository.getLock(FlowExecutionKey key)
           
protected abstract  java.io.Serializable AbstractConversationFlowExecutionRepository.parseContinuationId(java.lang.String encodedId)
          Template method to parse the continuation id from the encoded string.
 FlowExecutionKey AbstractConversationFlowExecutionRepository.parseFlowExecutionKey(java.lang.String encodedKey)
           
abstract  void AbstractConversationFlowExecutionRepository.putFlowExecution(FlowExecutionKey key, FlowExecution flowExecution)
           
 void AbstractConversationFlowExecutionRepository.removeFlowExecution(FlowExecutionKey key)
           
 



Copyright © 2009 Spring Framework. All Rights Reserved.