1 /*2 * Copyright (c) 2002-2003 by OpenSymphony3 * All rights reserved.4 */5 package com.opensymphony.workflow.spi.ojb;6 7 8 /**9 * @author picard10 * Created on 9 sept. 200311 */12 public class OJBCurrentStep extends OJBStep {13 //~ Constructors ///////////////////////////////////////////////////////////14 15 public OJBCurrentStep() {16 super();17 }18 19 public OJBCurrentStep(OJBStep step) {20 super(step);21 }22 }23