Spring Web Flow

Serialized Form


Package org.springframework.binding.collection

Class org.springframework.binding.collection.SharedMapDecorator extends java.lang.Object implements Serializable

Serialized Fields

map

java.util.Map<K,V> map
The wrapped, target map.


Package org.springframework.binding.convert

Class org.springframework.binding.convert.ConversionException extends java.lang.RuntimeException implements Serializable

Class org.springframework.binding.convert.ConversionExecutionException extends ConversionException implements Serializable

Serialized Fields

sourceClass

java.lang.Class<T> sourceClass
The source type we tried to convert the value from.


targetClass

java.lang.Class<T> targetClass
The target type we tried to convert the value to.

Class org.springframework.binding.convert.ConversionExecutorNotFoundException extends ConversionException implements Serializable

Serialized Fields

sourceClass

java.lang.Class<T> sourceClass

targetClass

java.lang.Class<T> targetClass

Package org.springframework.binding.convert.converters

Class org.springframework.binding.convert.converters.InvalidFormatException extends java.lang.RuntimeException implements Serializable

Serialized Fields

invalidValue

java.lang.String invalidValue

expectedFormat

java.lang.String expectedFormat

Package org.springframework.binding.expression

Class org.springframework.binding.expression.EvaluationException extends java.lang.RuntimeException implements Serializable

Serialized Fields

contextClass

java.lang.Class<T> contextClass

expressionString

java.lang.String expressionString

Class org.springframework.binding.expression.ParserException extends java.lang.RuntimeException implements Serializable

Serialized Fields

expressionString

java.lang.String expressionString
The expression string that could not be parsed.

Class org.springframework.binding.expression.PropertyNotFoundException extends EvaluationException implements Serializable

Class org.springframework.binding.expression.ValueCoercionException extends EvaluationException implements Serializable

Serialized Fields

targetClass

java.lang.Class<T> targetClass

Package org.springframework.binding.message

Class org.springframework.binding.message.Message extends java.lang.Object implements Serializable

Serialized Fields

source

java.lang.Object source

text

java.lang.String text

severity

Severity severity

Class org.springframework.binding.message.MessageContextErrors extends org.springframework.validation.AbstractErrors implements Serializable

Serialized Fields

messageContext

MessageContext messageContext

objectName

java.lang.String objectName

boundObject

java.lang.Object boundObject

expressionParser

ExpressionParser expressionParser

mappingResults

MappingResults mappingResults

bindingErrorMessageCodesResolver

org.springframework.validation.MessageCodesResolver bindingErrorMessageCodesResolver

Package org.springframework.binding.method

Class org.springframework.binding.method.InvalidMethodKeyException extends java.lang.RuntimeException implements Serializable

Serialized Fields

methodKey

MethodKey methodKey
The method key that could not be resolved.

Class org.springframework.binding.method.MethodInvocationException extends java.lang.RuntimeException implements Serializable

Class org.springframework.binding.method.MethodKey extends java.lang.Object implements Serializable

Serialized Fields

declaredType

java.lang.Class<T> declaredType
The class the method is a member of.


methodName

java.lang.String methodName
The method name.


parameterTypes

java.lang.Class<T>[] parameterTypes
The method's actual parameter types. Could contain null values if the user did not specify a parameter type for the corresponding parameter


Package org.springframework.faces.model

Class org.springframework.faces.model.ManySelectionTrackingListDataModel extends SerializableListDataModel<T> implements Serializable

Serialized Fields

selections

java.util.List<E> selections

Class org.springframework.faces.model.OneSelectionTrackingListDataModel extends SerializableListDataModel<T> implements Serializable

Serialized Fields

selections

java.util.List<E> selections
The list of currently selected row data objects.

Class org.springframework.faces.model.SerializableListDataModel extends javax.faces.model.ListDataModel<T> implements Serializable


Package org.springframework.faces.support

Class org.springframework.faces.support.RequestLoggingPhaseListener extends java.lang.Object implements Serializable


Package org.springframework.faces.webflow

Class org.springframework.faces.webflow.FlowFacesContext.FacesMessageSource extends java.lang.Object implements Serializable

Serialized Fields

clientId

java.lang.String clientId

Class org.springframework.faces.webflow.FlowFacesContext.FlowFacesMessage extends Message implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream ois)
                 throws java.lang.ClassNotFoundException,
                        java.io.IOException
Throws:
java.lang.ClassNotFoundException
java.io.IOException

writeObject

private void writeObject(java.io.ObjectOutputStream oos)
                  throws java.io.IOException
Throws:
java.io.IOException

Package org.springframework.js.resource

Class org.springframework.js.resource.ResourceServlet extends org.springframework.web.servlet.HttpServletBean implements Serializable

Serialized Fields

protectedPath

java.lang.String protectedPath
Deprecated. 

jarPathPrefix

java.lang.String jarPathPrefix
Deprecated. 

springJsJarPathPrefix

java.lang.String springJsJarPathPrefix
Deprecated. 

gzipEnabled

boolean gzipEnabled
Deprecated. 

allowedResourcePaths

java.util.Set<E> allowedResourcePaths
Deprecated. 

defaultMimeTypes

java.util.Map<K,V> defaultMimeTypes
Deprecated. 

compressedMimeTypes

java.util.Set<E> compressedMimeTypes
Deprecated. 

cacheTimeout

int cacheTimeout
Deprecated. 

Package org.springframework.webflow.action

Class org.springframework.webflow.action.DispatchMethodInvoker.MethodLookupException extends java.lang.RuntimeException implements Serializable


Package org.springframework.webflow.conversation

Class org.springframework.webflow.conversation.ConversationException extends java.lang.RuntimeException implements Serializable

Class org.springframework.webflow.conversation.ConversationId extends java.lang.Object implements Serializable

Class org.springframework.webflow.conversation.ConversationLockException extends ConversationException implements Serializable

Class org.springframework.webflow.conversation.ConversationParameters extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
The conversation name.


caption

java.lang.String caption
The conversation caption.


description

java.lang.String description
The conversation description.

Class org.springframework.webflow.conversation.NoSuchConversationException extends ConversationException implements Serializable

Serialized Fields

conversationId

ConversationId conversationId
The unique conversation identifier that was invalid.


Package org.springframework.webflow.conversation.impl

Class org.springframework.webflow.conversation.impl.BadlyFormattedConversationIdException extends ConversationException implements Serializable

Class org.springframework.webflow.conversation.impl.ContainedConversation extends java.lang.Object implements Serializable

Serialized Fields

container

ConversationContainer container

id

ConversationId id

lock

ConversationLock lock

attributes

java.util.Map<K,V> attributes

Class org.springframework.webflow.conversation.impl.ConversationContainer extends java.lang.Object implements Serializable

Serialized Fields

maxConversations

int maxConversations
Maximum number of conversations in this container. -1 for unlimited.


sessionKey

java.lang.String sessionKey
The key of this conversation container in the session.


conversations

java.util.List<E> conversations
The contained conversations. A list of ContainedConversation objects.


conversationIdSequence

int conversationIdSequence
The sequence for unique conversation identifiers within this container.

Class org.springframework.webflow.conversation.impl.JdkConcurrentConversationLock extends java.lang.Object implements Serializable

Serialized Fields

lock

java.util.concurrent.locks.Lock lock

timeoutSeconds

int timeoutSeconds

Class org.springframework.webflow.conversation.impl.LockInterruptedException extends ConversationLockException implements Serializable

Class org.springframework.webflow.conversation.impl.LockTimeoutException extends ConversationLockException implements Serializable

Class org.springframework.webflow.conversation.impl.NoOpConversationLock extends java.lang.Object implements Serializable

Serialization Methods

readResolve

private java.lang.Object readResolve()
                              throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException

Class org.springframework.webflow.conversation.impl.SimpleConversationId extends ConversationId implements Serializable

Serialized Fields

id

java.io.Serializable id
The id value.


Package org.springframework.webflow.core

Class org.springframework.webflow.core.FlowException extends java.lang.RuntimeException implements Serializable


Package org.springframework.webflow.core.collection

Class org.springframework.webflow.core.collection.AttributeMapBindingEvent extends java.util.EventObject implements Serializable

Serialized Fields

attributeName

java.lang.String attributeName

attributeValue

java.lang.Object attributeValue

Class org.springframework.webflow.core.collection.LocalAttributeMap extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

attributes

java.util.Map<K,V> attributes
The backing map storing the attributes.

Class org.springframework.webflow.core.collection.LocalParameterMap extends java.lang.Object implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

parameters

java.util.Map<K,V> parameters
The backing map storing the parameters.

Class org.springframework.webflow.core.collection.LocalSharedAttributeMap extends LocalAttributeMap<V> implements Serializable


Package org.springframework.webflow.definition.registry

Class org.springframework.webflow.definition.registry.FlowDefinitionConstructionException extends FlowException implements Serializable

Serialized Fields

flowDefinitionId

java.lang.String flowDefinitionId
The id of the flow that could not be constructed.

Class org.springframework.webflow.definition.registry.NoSuchFlowDefinitionException extends FlowException implements Serializable

Serialized Fields

flowDefinitionId

java.lang.String flowDefinitionId
The id of the flow definition that could not be located.


Package org.springframework.webflow.engine

Class org.springframework.webflow.engine.FlowAttributeMappingException extends FlowExecutionException implements Serializable

Serialized Fields

results

MappingResults results

Class org.springframework.webflow.engine.FlowInputMappingException extends FlowAttributeMappingException implements Serializable

Class org.springframework.webflow.engine.FlowOutputMappingException extends FlowAttributeMappingException implements Serializable

Class org.springframework.webflow.engine.NoMatchingTransitionException extends FlowExecutionException implements Serializable

Serialized Fields

event

Event event
The event that occurred that could not be matched to a Transition.

Class org.springframework.webflow.engine.ViewRenderingException extends FlowExecutionException implements Serializable

Class org.springframework.webflow.engine.WildcardTransitionCriteria extends java.lang.Object implements Serializable

Serialization Methods

readResolve

private java.lang.Object readResolve()
                              throws java.io.ObjectStreamException
Throws:
java.io.ObjectStreamException

Package org.springframework.webflow.engine.builder

Class org.springframework.webflow.engine.builder.FlowBuilderException extends FlowException implements Serializable


Package org.springframework.webflow.engine.impl

Class org.springframework.webflow.engine.impl.FlowExecutionImpl extends java.lang.Object implements Serializable

Serialization Methods

readExternal

public void readExternal(java.io.ObjectInput in)
                  throws java.io.IOException,
                         java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeExternal

public void writeExternal(java.io.ObjectOutput out)
                   throws java.io.IOException
Throws:
java.io.IOException

Package org.springframework.webflow.engine.model.builder

Class org.springframework.webflow.engine.model.builder.FlowModelBuilderException extends FlowException implements Serializable


Package org.springframework.webflow.engine.model.registry

Class org.springframework.webflow.engine.model.registry.NoSuchFlowModelException extends FlowException implements Serializable

Serialized Fields

flowModelId

java.lang.String flowModelId
The id of the flow model that could not be located.


Package org.springframework.webflow.engine.support

Class org.springframework.webflow.engine.support.GenericSubflowAttributeMapper extends java.lang.Object implements Serializable

Serialized Fields

inputMapper

Mapper inputMapper

outputMapper

Mapper outputMapper

Package org.springframework.webflow.execution

Class org.springframework.webflow.execution.ActionExecutionException extends FlowExecutionException implements Serializable

Class org.springframework.webflow.execution.EnterStateVetoException extends FlowExecutionException implements Serializable

Serialized Fields

vetoedStateId

java.lang.String vetoedStateId
The state whose entering was vetoed.

Class org.springframework.webflow.execution.Event extends java.util.EventObject implements Serializable

Serialized Fields

id

java.lang.String id
The event identifier.


timestamp

long timestamp
The time the event occurred.


attributes

AttributeMap<V> attributes
Additional event attributes that form this event's payload.

Class org.springframework.webflow.execution.FlowExecutionException extends FlowException implements Serializable

Serialized Fields

flowId

java.lang.String flowId
The id of the flow definition in which the exception occurred.


stateId

java.lang.String stateId
The state of the flow where the exception occurred (optional).

Class org.springframework.webflow.execution.FlowExecutionKey extends java.lang.Object implements Serializable


Package org.springframework.webflow.execution.repository

Class org.springframework.webflow.execution.repository.BadlyFormattedFlowExecutionKeyException extends FlowExecutionRepositoryException implements Serializable

Serialized Fields

invalidKey

java.lang.String invalidKey
The string encoded flow execution key that was invalid.


format

java.lang.String format
The format the string key should have been in. Could just be a description of that format.

Class org.springframework.webflow.execution.repository.FlowExecutionAccessException extends FlowExecutionRepositoryException implements Serializable

Serialized Fields

flowExecutionKey

FlowExecutionKey flowExecutionKey
The key of the execution that could not be accessed.

Class org.springframework.webflow.execution.repository.FlowExecutionRepositoryException extends FlowException implements Serializable

Class org.springframework.webflow.execution.repository.FlowExecutionRestorationFailureException extends FlowExecutionAccessException implements Serializable

Class org.springframework.webflow.execution.repository.NoSuchFlowExecutionException extends FlowExecutionAccessException implements Serializable

Class org.springframework.webflow.execution.repository.PermissionDeniedFlowExecutionAccessException extends FlowExecutionAccessException implements Serializable


Package org.springframework.webflow.execution.repository.snapshot

Class org.springframework.webflow.execution.repository.snapshot.FlowExecutionSnapshot extends java.lang.Object implements Serializable

Class org.springframework.webflow.execution.repository.snapshot.SerializedFlowExecutionSnapshot extends FlowExecutionSnapshot implements Serializable

Serialization Methods

readExternal

public void readExternal(java.io.ObjectInput in)
                  throws java.io.IOException,
                         java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeExternal

public void writeExternal(java.io.ObjectOutput out)
                   throws java.io.IOException
Throws:
java.io.IOException

Class org.springframework.webflow.execution.repository.snapshot.SnapshotCreationException extends FlowExecutionRepositoryException implements Serializable

Serialized Fields

flowExecution

FlowExecution flowExecution
The flow execution that could not be snapshotted.

Class org.springframework.webflow.execution.repository.snapshot.SnapshotNotFoundException extends FlowExecutionRepositoryException implements Serializable

Serialized Fields

snapshotId

java.io.Serializable snapshotId

Class org.springframework.webflow.execution.repository.snapshot.SnapshotUnmarshalException extends FlowExecutionRepositoryException implements Serializable


Package org.springframework.webflow.execution.repository.support

Class org.springframework.webflow.execution.repository.support.CompositeFlowExecutionKey extends FlowExecutionKey implements Serializable

Serialized Fields

executionId

java.io.Serializable executionId

snapshotId

java.io.Serializable snapshotId

Package org.springframework.webflow.mvc.view

Class org.springframework.webflow.mvc.view.BindingModel extends org.springframework.validation.AbstractErrors implements Serializable

Serialized Fields

objectName

java.lang.String objectName

boundObject

java.lang.Object boundObject

expressionParser

ExpressionParser expressionParser

conversionService

ConversionService conversionService

mappingResults

MappingResults mappingResults

messageContext

MessageContext messageContext

binderConfiguration

BinderConfiguration binderConfiguration

Class org.springframework.webflow.mvc.view.ViewActionStateHolder extends java.lang.Object implements Serializable

Serialized Fields

eventId

java.lang.String eventId

userEventProcessed

boolean userEventProcessed

Package org.springframework.webflow.test

Class org.springframework.webflow.test.GeneratedFlowExecutionKey extends FlowExecutionKey implements Serializable

Serialized Fields

value

int value

Class org.springframework.webflow.test.MockFlowExecutionKey extends FlowExecutionKey implements Serializable

Serialized Fields

value

java.lang.String value

Class org.springframework.webflow.test.MockParameterMap extends LocalParameterMap implements Serializable


Spring Web Flow