01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: /*
06: * Created by IntelliJ IDEA.
07: * User: plightbo
08: * Date: Apr 29, 2002
09: * Time: 11:12:05 PM
10: */
11: package com.opensymphony.workflow.basic;
12:
13: import com.opensymphony.workflow.AbstractWorkflow;
14:
15: /**
16: * A basic workflow implementation which does not read in
17: * the current user from any context, but allows one to be
18: * specified via the constructor. Also does not support rollbacks.
19: */
20: public class BasicWorkflow extends AbstractWorkflow {
21: //~ Constructors ///////////////////////////////////////////////////////////
22:
23: public BasicWorkflow(String caller) {
24: super .context = new BasicWorkflowContext(caller);
25: }
26: }
|