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

org.springframework.webflow.executor.FlowExecutor 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.executor;

import org.springframework.webflow.context.ExternalContext;
import org.springframework.webflow.core.FlowException;

/**
 * The central facade and entry-point service interface into the Spring Web Flow
 * system for driving the executions of flow definitions. This interface
 * defines a coarse-grained system boundary suitable for invocation by most
 * clients.
 * 

* Implementations of this interface abstract away much of the internal * complexity of the web flow execution subsystem, which consists of launching * and resuming managed flow executions from repositories. * * @author Keith Donald */ public interface FlowExecutor { /** * Launch a new execution of identified flow definition in the context of * the current external client request. * @param flowDefinitionId the unique id of the flow definition to launch * @param context the external context representing the state of a request * into Spring Web Flow from an external system * @return the starting response instruction * @throws FlowException if an exception occured launching the new flow * execution */ public ResponseInstruction launch(String flowDefinitionId, ExternalContext context) throws FlowException; /** * Resume an existing, paused flow execution by signaling an event against * its current state. * @param flowExecutionKey the identifying key of a paused flow execution * that is waiting to resume on the occurrence of a user event * @param eventId the user event that occured * @param context the external context representing the state of a request * into Spring Web Flow from an external system * @return the next response instruction * @throws FlowException if an exception occured resuming the existing flow * execution */ public ResponseInstruction resume(String flowExecutionKey, String eventId, ExternalContext context) throws FlowException; /** * Reissue the last response instruction issued by the flow execution. This is * a logical refresh operation that allows the "current response" to be * re-issued. This operation is idempotent and does not affect the state of the flow * execution. * @param flowExecutionKey the identifying key of a paused flow execution * that is waiting to resume on the ocurrence of a user event * @param context the external context representing the state of a request * into Spring Web Flow from an external system * @return the current response instruction * @throws FlowException if an exception occured retrieving the current * response instruction */ public ResponseInstruction refresh(String flowExecutionKey, ExternalContext context) throws FlowException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy