01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow.spi.hibernate;
06:
07: /**
08: * This class exists to seperate the persistence of the Steps.
09: * By seperating out the Current Step from the Previous
10: �* Step classes, they can be easily written into seperate tables.
11: �* @see {@link HibernateHistoryStep}
12: */
13: public class HibernateCurrentStep extends HibernateStep {
14: //~ Constructors ///////////////////////////////////////////////////////////
15:
16: public HibernateCurrentStep() {
17: }
18:
19: public HibernateCurrentStep(HibernateStep step) {
20: super(step);
21: }
22: }
|