FlowExecutionResult.java

/*
 * Copyright 2004-2008 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
 *
 *      https://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.execution.FlowExecutionOutcome;

/**
 * A value object providing information about the result of a flow execution request.
 * 
 * @author Keith Donald
 */
public class FlowExecutionResult {

	private String flowId;

	private String flowExecutionKey;

	private FlowExecutionOutcome outcome;

	private FlowExecutionResult(String flowId, String flowExecutionKey, FlowExecutionOutcome outcome) {
		this.flowId = flowId;
		this.flowExecutionKey = flowExecutionKey;
		this.outcome = outcome;
	}

	/**
	 * Factory method that creates a paused result, indicating the flow is now in a wait state after handling the
	 * request.
	 * @param flowId the flow id
	 * @param flowExecutionKey the flow execution key
	 * @return the result
	 */
	public static FlowExecutionResult createPausedResult(String flowId, String flowExecutionKey) {
		return new FlowExecutionResult(flowId, flowExecutionKey, null);
	}

	/**
	 * Factory method that creates a ended result, indicating the flow terminated after handling the request.
	 * @param flowId the flow id
	 * @param outcome the ending execution outcome
	 * @return the result
	 */
	public static FlowExecutionResult createEndedResult(String flowId, FlowExecutionOutcome outcome) {
		return new FlowExecutionResult(flowId, null, outcome);
	}

	/**
	 * Returns the flow definition that completed execution.
	 * @return the flow id
	 */
	public String getFlowId() {
		return flowId;
	}

	/**
	 * Returns true if the flow execution paused and is now in a wait state.
	 * @return true if paused, false if not
	 */
	public boolean isPaused() {
		return flowExecutionKey != null;
	}

	/**
	 * Returns the key needed to resume the flow execution when a paused result.
	 * @see #isPaused()
	 * @return the key of the paused flow execution
	 */
	public String getPausedKey() {
		return flowExecutionKey;
	}

	/**
	 * Returns true if the flow execution ended.
	 * @return true if ended, false if not
	 */
	public boolean isEnded() {
		return flowExecutionKey == null;
	}

	/**
	 * Returns the flow execution outcome when an ended result.
	 * @see #isEnded()
	 * @return the ended outcome, or <code>null</code> if this is not an ended result
	 */
	public FlowExecutionOutcome getOutcome() {
		return outcome;
	}

}