01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.workflow.spi.hibernate;
06:
07: /**
08: �* This is here to persist the historical steps to the historical table.
09: * It is more used more for querying than persistence.
10: */
11: public class HibernateHistoryStep extends HibernateStep {
12: //~ Constructors ///////////////////////////////////////////////////////////
13:
14: public HibernateHistoryStep() {
15: }
16:
17: public HibernateHistoryStep(HibernateStep step) {
18: super(step);
19: }
20: }
|