All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.webflow.execution.FlowExecutionFactory Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
/*
 * Copyright 2002-2006 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.webflow.execution;

import org.springframework.webflow.definition.FlowDefinition;

/**
 * An abstract factory for creating flow exections. A flow execution represents
 * a runtime, top-level instance of a flow definition.
 * 

* This factory provides encapsulation of the flow execution implementation * type, as well as its construction and assembly process. *

* Flow execution factories are responsible for registering * {@link FlowExecutionListener listeners} with the constructed flow execution. * * @see FlowExecution * @see FlowDefinition * @see FlowExecutionListener * * @author Keith Donald */ public interface FlowExecutionFactory { /** * Create a new flow execution product for the given flow definition. * @param flowDefinition the flow definition * @return the new flow execution, fully initialized and awaiting to be * started * @see FlowExecution#start(org.springframework.webflow.core.collection.MutableAttributeMap, org.springframework.webflow.context.ExternalContext) */ public FlowExecution createFlowExecution(FlowDefinition flowDefinition); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy