KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > workflow > spi > hibernate > HibernateCurrentStep


1 /*
2  * Copyright (c) 2002-2003 by OpenSymphony
3  * All rights reserved.
4  */

5 package com.opensymphony.workflow.spi.hibernate;
6
7
8 /**
9  * This class exists to seperate the persistence of the Steps.
10  * By seperating out the Current Step from the Previous
11   * Step classes, they can be easily written into seperate tables.
12   * @see {@link HibernateHistoryStep}
13  * @version $Revision: 1.3 $
14  */

15 public class HibernateCurrentStep extends HibernateStep {
16     //~ Constructors ///////////////////////////////////////////////////////////
17

18     public HibernateCurrentStep() {
19     }
20
21     public HibernateCurrentStep(HibernateStep step) {
22         super(step);
23     }
24 }
25
Popular Tags