01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow.spi.ojb;
06:
07: /**
08: * @author picard
09: * Created on 9 sept. 2003
10: */
11: public class OJBCurrentStep extends OJBStep {
12: //~ Constructors ///////////////////////////////////////////////////////////
13:
14: public OJBCurrentStep() {
15: super ();
16: }
17:
18: public OJBCurrentStep(OJBStep step) {
19: super(step);
20: }
21: }
|