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 is here to persist the historical steps to the historical table. 10 * It is more used more for querying than persistence. 11 * @author $Author: hani $ 12 * @version $Revision: 1.3 $ 13 */ 14 public class HibernateHistoryStep extends HibernateStep { 15 //~ Constructors /////////////////////////////////////////////////////////// 16 17 public HibernateHistoryStep() { 18 } 19 20 public HibernateHistoryStep(HibernateStep step) { 21 super(step); 22 } 23 } 24