org.springframework.webflow.config
Class RepositoryType

java.lang.Object
  extended by org.springframework.core.enums.AbstractLabeledEnum
      extended by org.springframework.core.enums.StaticLabeledEnum
          extended by org.springframework.webflow.config.RepositoryType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable, org.springframework.core.enums.LabeledEnum

public class RepositoryType
extends org.springframework.core.enums.StaticLabeledEnum

Type-safe enumeration of logical flow execution repository types.

Author:
Keith Donald
See Also:
FlowExecutionRepository, Serialized Form

Field Summary
static RepositoryType CLIENT
          The 'client' (continuation) flow execution repository type.
static RepositoryType CONTINUATION
          The 'continuation' flow execution repository type.
static RepositoryType SIMPLE
          The 'simple' flow execution repository type.
static RepositoryType SINGLEKEY
          The 'singleKey' flow execution repository type.
 
Fields inherited from interface org.springframework.core.enums.LabeledEnum
CODE_ORDER, DEFAULT_ORDER, LABEL_ORDER
 
Method Summary
 
Methods inherited from class org.springframework.core.enums.StaticLabeledEnum
getCode, getLabel, readResolve, shortValue
 
Methods inherited from class org.springframework.core.enums.AbstractLabeledEnum
compareTo, equals, getType, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

SIMPLE

public static final RepositoryType SIMPLE
The 'simple' flow execution repository type.

See Also:
SimpleFlowExecutionRepository

CONTINUATION

public static final RepositoryType CONTINUATION
The 'continuation' flow execution repository type.

See Also:
ContinuationFlowExecutionRepository

CLIENT

public static final RepositoryType CLIENT
The 'client' (continuation) flow execution repository type.

See Also:
ClientContinuationFlowExecutionRepository

SINGLEKEY

public static final RepositoryType SINGLEKEY
The 'singleKey' flow execution repository type.

See Also:
SimpleFlowExecutionRepository, SimpleFlowExecutionRepository.setAlwaysGenerateNewNextKey(boolean)


Copyright © 2009 Spring Framework. All Rights Reserved.